我正在像这样测试 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 ?
-w
和-c
是命令的标志,但check_disk
您将它们传递给check_nrpe
命令。您需要将警告和关键级别作为参数传递
check_disk
给-a
标志和引号,如下所示: