I am trying to change the check_interval time for a single domain to 5 minutes but icinga2 doesn't override it. The checks are done every 1 minute. Here is my conf. The main domain examplemanager.com Icinga checks for 5 minutes but I want test.examplemanager.com to be checked every 7 minutes and examplemanager.com/test/admin to check every 5 minutes. how can I do that?
Asked
Active
Viewed 383 times
1 Answers
0
check_interval doesn't inherit from vars.
THis way it's vars.check_interval and not check_interval.
I always have an generic service include that does
if (service.vars.check_interval) {
check_interval = service.vars.check_interval
}

kovalsky
- 26
- 4