Build precise queries to find exactly what you need
Press ESC to close
great simple plugin for Unix/linux. Satisfied my requirements. Just had one issue. Logic was wrong for calculating used memory. Fixed it as follows-
used=$(echo “(($total-$free) / $total)*100” | bc -l)
was – used=$(echo “($free / $total)*100” | bc -l)
I used it with NRPE for remote check. Below steps- 1. Copy the downloaded script. Make change mentioned above. Name it check_memory.sh Copy, check_memory.sh, to /usr/lib/nagios/plugins on remote host
2. Add a file check_memory.cfg on remote host with content as-
command[check_memory]=/usr/lib/nagios/plugins/check_memory.sh -w 85 -c 90
3. restart nrpe service service nagios-nrpe-server restart
4. On nagios server, add below to /etc/nagios3/conf.d/services.cfg
#service for checking remote host memory usage define service { service_description check Memory Usage host_name remote-host-name-from-hosts.cfg check_command check_nrpe!check_memory use default-service }
5. reload nagios configuration
/etc/init.d/nagios reload
We’ve completely redesigned the world’s largest repository of Nagios plugins and monitoring tools. Join thousands of users sharing monitoring solutions for servers, applications, and everything in between.
Due to our redesign, all existing accounts require a password reset to access your account again.
Ready to explore 6,100+ projects and contribute to the community?
Reset Password Create Account
Happy Monitoring!