]> granicus.if.org Git - icinga2/blobdiff - itl/command-icinga.conf
Merge pull request #6657 from Icinga/feature/api-debug-log-request-body
[icinga2] / itl / command-icinga.conf
index a44fcc71b28f87a5d5c61f459901ad6eddd8fb68..4141b9030c67905b31235bd42b375a9724ece882 100644 (file)
@@ -1,6 +1,6 @@
 /******************************************************************************
  * Icinga 2                                                                   *
- * Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org)    *
+ * Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/)  *
  *                                                                            *
  * This program is free software; you can redistribute it and/or              *
  * modify it under the terms of the GNU General Public License                *
@@ -31,6 +31,24 @@ object CheckCommand "cluster-zone" {
        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"
+}