You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
832 B
Plaintext

// vim: set ft=icinga2 et sw=2 ts=2 si ai:
/**
* Provides default settings for hosts. By convention
* all hosts should import this template.
*
* The CheckCommand object `hostalive` is provided by
* the plugin check command templates.
* Check the documentation for details.
*/
template Host "generic-host" {
max_check_attempts = 3
check_interval = 1m
retry_interval = 30s
check_command = "hostalive"
}
template Host "linux-host" {
import "generic-host"
vars.os = "Linux"
}
template Host "debian-host" {
import "linux-host"
vars.osfamily = "Debian"
vars.procs = {
"ssh" = {
procs_command = "sshd"
procs_critical = "1:50"
}
}
}
template Host "postfix-host" {
vars.procs["postfix"] = {
procs_command = "master"
procs_argument = "postfix"
procs_critical = "1:2"
}
}