Nagios 设置更高的通知间隔

Nagios set higher interval for notifications

我想将我的nagios服务器发送每条通知的时间间隔设置为6小时发送一次。但是根据我当前的设置,命令间隔似乎设置为 1 小时。这是我的服务器监控默认模板以及我如何使用它。

define host{
    name                            linux-vps           
    use                             generic-host            
    check_period                    24x7        
    check_interval                  5       
    retry_interval                  1       
    max_check_attempts              10      
    check_command                   check-host-alive
    notification_period             24x7    
    notification_interval           360      
    notification_options            d,r     
    contact_groups                  admins  
    register                        0                      
}

define host{
    use                             linux-vps
    host_name                       linux-server
    alias                           CentOS 6
    address                         xxx.xxx.xxx.xxx
}

在 Nagios 服务器上,配置表明主机通知间隔设置为 6 小时。

警报是通过服务警报还是主机警报发出的?可能是您的服务 notification_interval 设置为 1 小时。