check_nrpe脚本可以将自定义监视器解析为主机
/usr/lib64/nagios/plugins/check_nrpe -H 172.31.3.90 -c pinger
在Nagios仪表板中,它会抛出错误
failed. errno is 2: No such file or directory
网络和其他依赖项工作正常,define命令和服务似乎也很好
define command {
command_name pinger
command_line check_nrpe!pinger
}
define service {
use local-service ; Name of service template to use
host_name ci3
service_description pinger
check_command pinger
}
答案 0 :(得分:0)
必须将check_nrpe命令添加到文件
中的nagios服务器/usr/local/nagios/etc/objects/commands.cfg
该条目引用程序check_nrpe
define command {
command_name check_nrpe
command_line /usr/lib64/nagios/plugins/check_nrpe -H $HOSTNAME$ -c pinger
}
现在该服务正在收集数据,可以在Dashboard
中进行验证