I want to monitor the free disk space for linux systems (e.g. localhost).
The service definition lokks like this:
Code: Select all
define service{
use generic-service ; Name of service template to use
host_name localhost
service_description Disk Space
check_command check_disk!20%!10%!/dev/sda1
}
Code: Select all
define command{
command_name check_disk
command_line /usr/lib/nagios/plugins/check_disk -w '$ARG1$' -c '$ARG2$' -e -p '$ARG3$'
}
Is it possible to get this additional info to the web interface?
Thank you!
Stephan