From: Michael Friedrich Date: Fri, 17 Apr 2015 15:53:27 +0000 (+0200) Subject: Configuration: Default max_check_attempts should be lower for hosts than for services X-Git-Tag: v2.4.0~721 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d9dfeeb93cf7f4a8f94b2619321d3668e9a478a;p=icinga2 Configuration: Default max_check_attempts should be lower for hosts than for services fixes #8894 --- diff --git a/etc/icinga2/conf.d/templates.conf b/etc/icinga2/conf.d/templates.conf index a3607f476..3588f7fcf 100644 --- a/etc/icinga2/conf.d/templates.conf +++ b/etc/icinga2/conf.d/templates.conf @@ -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 }