mirror of https://github.com/Icinga/icinga2.git
42 lines
752 B
Plaintext
42 lines
752 B
Plaintext
/* 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"
|
|
}
|
|
|
|
object CheckCommand "sleep" {
|
|
import "sleep-check-command"
|
|
}
|