我刚刚更新到需要检查远程主机的“新”方法的 Icing 2.8,所以我试图让它工作。
在 master 上,我在 zone.d 中添加了一个文件夹,其中包含远程主机的主机名。我添加了一些检查,但它们似乎都是从主机而不是远程执行的。
例如:我需要监控 Redis。我在 /etc/icinga2/zones.d/remotehostname/redis.conf 中的 redis.conf:
apply Service "Redis" {
import "generic-service"
check_command = "Redis"
vars.notification["pushover"] = {
groups = [ "ADMINS" ]
}
assign where host.name == "remotehostname"
}
IcingaWeb 中弹出了一项新服务,但出现以下错误:
execvpe(/usr/lib/nagios/nagios-plugins/check_redis_publish_subscribe.pl) failed: No such file or directory
这是正确的,因为在 master 上该文件不存在。但是,它确实存在于远程主机上。
如何让 Icinga 在远程主机上执行此操作并让该主机将输出返回给主机?