From 0d9dfeeb93cf7f4a8f94b2619321d3668e9a478a Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Fri, 17 Apr 2015 17:53:27 +0200 Subject: [PATCH] Configuration: Default max_check_attempts should be lower for hosts than for services fixes #8894 --- etc/icinga2/conf.d/templates.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }