我正在像这样测试 nagios 和 nrpe
define service{
use local-service ; Name of service template to use
host_name nrpeserver.com
service_description check_disk
check_command check_nrpe!check_disk
notification_period 24x7
notification_interval 30
}
然后我测试了。
$ /usr/lib/nagios/plugins/check_nrpe -H nrpeserver.com -c check_disk
好的,它有效。
现在我想为此添加警告点。
$ /usr/lib/nagios/plugins/check_nrpe -H nrpeserver.com -c check_disk -w 10
表明
/usr/lib/nagios/plugins/check_nrpe: invalid option -- 'w'
我也试过这个
$ /usr/lib/nagios/plugins/check_nrpe -H 54.71.164.129 -c "check_disk -w 10"
显示这样的错误
NRPE: Command 'check_disk -w 10' not defined
如何将警告点设置为 nrpe ?