icinga2/itl/command-icinga.conf
Michael Friedrich d14a88235d Replace Copyright header with a short version, part I
CLion -> replace in path
2019-02-25 14:48:22 +01:00

37 lines
686 B
Text

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
object CheckCommand "icinga" {
import "icinga-check-command"
}
object CheckCommand "cluster" {
import "cluster-check-command"
}
object CheckCommand "cluster-zone" {
import "cluster-zone-check-command"
vars.cluster_zone = "$host.name$"
}
object CheckCommand "dummy" {
import "dummy-check-command"
vars.dummy_state = 0
vars.dummy_text = "Check was successful."
}
object CheckCommand "passive" {
import "dummy"
vars.dummy_state = 3
vars.dummy_text = "No Passive Check Result Received."
}
object CheckCommand "random" {
import "random-check-command"
}
object CheckCommand "exception" {
import "exception-check-command"
}