From my reading of the documentation, I was under the impression that once the escalation took over Nagios would notify according to the escalation rules. This did not seem to happen for me.
Here is the code I had:
Code: Select all
define host {
host_name Curts Tester
use HOU Hosts
address dt-00112233
max_check_attempts 1
check_interval 1
retry_interval 1
active_checks_enabled 1
check_period 24x7
notification_interval 1
notification_period 24x7
notification_options d,u,
notifications_enabled 1
register 1
}
define hostescalation {
# config_name Text notification - SS team
host_name Curts Tester
hostgroup_name Critical Systems
contacts jcalford1,srvsupport
first_notification 3
last_notification 0
notification_interval 1
escalation_period 24x7
escalation_options u,r,d,
}
Code: Select all
define host {
host_name Curts Tester
use HOU Hosts
address dt-00112233
max_check_attempts 1
check_interval 1
retry_interval 1
active_checks_enabled 1
check_period 24x7
notification_interval 1
notification_period 24x7
notification_options d,u,r,
notifications_enabled 1
register 1
}
Thanks.