]> granicus.if.org Git - icinga2/commitdiff
Configuration: Default max_check_attempts should be lower for hosts than for services
authorMichael Friedrich <michael.friedrich@netways.de>
Fri, 17 Apr 2015 15:53:27 +0000 (17:53 +0200)
committerMichael Friedrich <michael.friedrich@netways.de>
Fri, 17 Apr 2015 15:53:27 +0000 (17:53 +0200)
fixes #8894

etc/icinga2/conf.d/templates.conf

index a3607f4760f1fc9230c46b1af62e2f44df13aa2a..3588f7fcfffbb4109fdda1ef5a879e5dc805b4d5 100644 (file)
@@ -12,7 +12,7 @@
  * Check the documentation for details.
  */
 template Host "generic-host" {
-  max_check_attempts = 5
+  max_check_attempts = 3
   check_interval = 1m
   retry_interval = 30s
 
@@ -24,7 +24,7 @@ template Host "generic-host" {
  * all services should import this template.
  */
 template Service "generic-service" {
-  max_check_attempts = 3
+  max_check_attempts = 5
   check_interval = 1m
   retry_interval = 30s
 }