I want to override some template settings for 1 service. I thought that service settings overruled the template settings but it doesn't seem to work that way in Nagios XI 2014R2.6.
Here's my template setting :
Code: Select all
define service {
name my-service
service_description My Service
display_name Mys Service
max_check_attempts 3
check_interval 10
retry_interval 5
check_period 24x7
notification_interval 1440
notification_period 24x7
notification_options w,c,r,
register 0
}Here's my service setting :
Code: Select all
define service {
service_description HP Switch : CPU
use my-service
hostgroup_name hp-switch
check_command check_snmp!-C public -o .1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0 -w 90 -c 95 -u % -l "5min cpu" !!!!!!!
max_check_attempts 6
register 1
}