Configuration: Default max_check_attempts should be lower for hosts than for services

fixes #8894
This commit is contained in:
Michael Friedrich 2015-04-17 17:53:27 +02:00
parent 201c41f2ca
commit fa16f3ae76
1 changed files with 2 additions and 2 deletions

View 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
}