summaryrefslogtreecommitdiffstats
path: root/itl/command-icinga.conf
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:34:54 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:34:54 +0000
commit0915b3ef56dfac3113cce55a59a5765dc94976be (patch)
treea8fea11d50b4f083e1bf0f90025ece7f0824784a /itl/command-icinga.conf
parentInitial commit. (diff)
downloadicinga2-upstream.tar.xz
icinga2-upstream.zip
Adding upstream version 2.13.6.upstream/2.13.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'itl/command-icinga.conf')
-rw-r--r--itl/command-icinga.conf41
1 files changed, 41 insertions, 0 deletions
diff --git a/itl/command-icinga.conf b/itl/command-icinga.conf
new file mode 100644
index 0000000..206324a
--- /dev/null
+++ b/itl/command-icinga.conf
@@ -0,0 +1,41 @@
+/* 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"
+}