define host{
use generic-host
host_name mylinux
alias mylinux
address 192.168.1.mylinux
}
define service{
use generic-service
host_name mylinux
service_description HTTP-Server
check_command check_http
}
# Define a service to check the disk space of the root partition
# on the local machine. Warning if < 20% free, critical if
# < 10% free space on partition.
define service{
use generic-service ; Name of service template to use
host_name mylinux
service_description Disk Space
check_command check_all_disks!20%!10%
}
# Define a service to check the number of currently logged in
# users on the local machine. Warning if > 20 users, critical
# if > 50 users.
define service{
use generic-service ; Name of service template to use
host_name mylinux
service_description Current Users
check_command check_users!20!50
}
# Define a service to check the number of currently running procs
# on the local machine. Warning if > 250 processes, critical if
# > 400 processes.
define service{
use generic-service ; Name of service template to use
host_name mylinux
service_description Total Processes
check_command check_procs!250!400
}
# Define a service to check the load on the local machine.
define service{
use generic-service ; Name of service template to use
host_name mylinux
service_description Current Load
check_command check_load!5.0!4.0!3.0!10.0!6.0!4.0
}
重启服务: