在 Nogios 配置中,我有 2 个联系人和 1 个 contact_group,其中仅包含 1 个联系人,如下所示:
define contact{
contact_name one
}
define contact{
contact_name two
}
define contactgroup{
contactgroup_name admins
members one
}
我这样设置我的服务
define service {
name xxx-service
...
contacts two
}
当服务触发时,我收到两封电子邮件,一封来自“一”,另一封来自“二”。
是否有默认的contact_group 或其他东西使这种情况发生?我该怎么做才能让它只向“两个”发送消息?