If I have a host called viper with the following definitions, I'm wondering why the group admins gets warning notifications for the service "DISK /" after the first notification. To me, these definitions say that admins should get no more than 5 notifications and no warning notifications after the first one. Am I wrong in thinking that? In testing this, the admins group got at least 8 warning notifications.
<br><br>host definition<br>---<br>define host{<br>        use                       generic-host<br>        host_name                 viper<br>        alias                     viper<br>        address                   <a href="http://127.0.0.1">
127.0.0.1</a><br>        parents                   localhost<br>        check_command             check-host-alive<br>        notification_interval     0<br>        notification_options      d,r<br>        notification_period       never
<br>        contact_groups            admins<br>}<br><br>service definition<br>---<br>define service{<br>        use                           generic-service<br>        host_name                     viper<br>        service_description           DISK /
<br>        is_volatile                   0<br>        check_period                  24x7<br>        retry_check_interval          1<br>        contact_groups                admins<br>        notification_interval         5
<br>        notification_period           24x7<br>        notification_options          w,u,c,r<br>        check_command                 check_nrpe!check_disk1<br>}<br><br>escalation definition<br>---<br>define serviceescalation{
<br>        host_name                     viper<br>        service_description           DISK /<br>        first_notification            2<br>        last_notification             2<br>        notification_interval         5
<br>        contact_groups                admins<br>        escalation_options            c,r<br>}<br>define serviceescalation{<br>        host_name                     viper<br>        service_description           DISK /
<br>        first_notification            3<br>        last_notification             4<br>        notification_interval         5<br>        contact_groups                admins<br>        escalation_options            c,r
<br>}<br>define serviceescalation{<br>        host_name                     viper<br>        service_description           DISK /<br>        first_notification            5<br>        last_notification             0<br>        notification_interval         0
<br>        contact_groups                admins<br>        escalation_options            c,r<br>}<br><br>Please let me know if more info is needed. Thanks in advance.<br><br>Jeff<br>