Escalation based on service-group [solved]
Posted: Tue Jan 29, 2013 7:26 am
What I'm trying to do:
Use escalations based on servicegroups.
What Nagios does instead:
Uses the 'admins' contact_group defined in the 'generic-service' template.
Escalation Template:
Service Escalation:
Service Definition:
Thanks for any help!
Use escalations based on servicegroups.
What Nagios does instead:
Uses the 'admins' contact_group defined in the 'generic-service' template.
Escalation Template:
Code: Select all
define serviceescalation {
name service-escalation-1st-PROD
first_notification 2
last_notification 5
notification_interval 10
escalation_period 24x7
escalation_options c
register 0
}Code: Select all
define serviceescalation {
use service-escalation-1st-PROD
servicegroup_name linux-services-prod
contact_groups unix-primary
}Code: Select all
define service {
service_description check_centos_total_procs
use active-service
host_name !server1,!server3
hostgroup_name linux-prod
check_command check_nrpe!check_centos_total_procs
notifications_enabled 0
servicegroups linux-services-prod
}Thanks for any help!