mirror of https://github.com/Icinga/icinga2.git
Configuration: Default max_check_attempts should be lower for hosts than for services
fixes #8894
This commit is contained in:
parent
201c41f2ca
commit
fa16f3ae76
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue