12 lines
263 B
Text
12 lines
263 B
Text
|
// vim: set ft=icinga2 et sw=2 ts=2 si ai:
|
||
|
|
||
|
/**
|
||
|
* Provides default settings for services. By convention
|
||
|
* all services should import this template.
|
||
|
*/
|
||
|
template Service "generic-service" {
|
||
|
max_check_attempts = 5
|
||
|
check_interval = 1m
|
||
|
retry_interval = 30s
|
||
|
}
|