我有一个小问题困扰我一段时间了,现在是时候解决它了:)
我正在运行 Nagios Core 3.5 安装。在 Nagios 配置中,我们定义了几个服务模板,所有这些模板都定义了联系人。我们有一些服务必须通知与服务中定义的默认联系人不同的联系人。
根据我读到的这里我希望服务定义能够覆盖默认联系人。
配置示例:
define service{
name generic-service-5min
notifications_enabled 1
contacts contact1
notification_options w,u,c,r
notification_interval 60
notification_period businessday
register 0
}
define service{
use generic-service-5min
host_name HOST1
service_description CustomService
check_command CustomService
contacts Contact2
}
也许我对此的理解是不正确的,这就是它应该如何工作的方式。但希望我们能找到一种方法,不会将消息发送给两个不同的联系人,而只会发送给一个联系人。
感谢您提供任何信息和/或见解。