Page 1 of 1

Warnig and Critical checking and notification

Posted: Wed Oct 09, 2013 11:28 am
by veenm
Hi ,

I have one requirement .
Can we configure the nagios check and alerts for nagios as below.
1. Should get the Warning alert after 3 polls
2.should get the critical alert after 1 check.

how we can configure above checks in nagios core

Re: Warnig and Critical checking and notification

Posted: Wed Oct 09, 2013 4:50 pm
by abrist
This is possible with escalations.
Create 1 escalation for warnings:

Code: Select all

first_notification  3
last_notification  0
notification_interval  <your choice (5min. default)>
escalation options  w
Create a second escalation for criticals:

Code: Select all

first_notification  1
last_notification  0
notification_interval  <your choice (5min. default)>
escalation_options  c

Re: Warnig and Critical checking and notification

Posted: Tue Oct 15, 2013 12:50 pm
by veenm
In which template do we have to add these parameter

Re: Warnig and Critical checking and notification

Posted: Tue Oct 15, 2013 12:52 pm
by abrist