2013-06-13 05:33:00 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2016-01-12 02:29:59 -05:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2013-06-13 05:33:00 -04:00
|
|
|
* *
|
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2013-11-12 06:04:52 -05:00
|
|
|
template CheckCommand "icinga-check-command" {
|
2014-12-12 14:40:24 -05:00
|
|
|
execute = IcingaCheck
|
2013-11-12 06:04:52 -05:00
|
|
|
}
|
|
|
|
|
|
2014-02-07 08:03:53 -05:00
|
|
|
template CheckCommand "cluster-check-command" {
|
2014-12-12 14:40:24 -05:00
|
|
|
execute = ClusterCheck
|
2014-02-07 08:03:53 -05:00
|
|
|
}
|
|
|
|
|
|
2014-05-25 11:10:57 -04:00
|
|
|
template CheckCommand "cluster-zone-check-command" {
|
2014-12-12 14:40:24 -05:00
|
|
|
execute = ClusterZoneCheck
|
2014-05-25 11:10:57 -04:00
|
|
|
}
|
|
|
|
|
|
2013-06-13 05:33:00 -04:00
|
|
|
template CheckCommand "plugin-check-command" {
|
2014-12-12 14:40:24 -05:00
|
|
|
execute = PluginCheck
|
2013-06-13 05:33:00 -04:00
|
|
|
}
|
|
|
|
|
|
2014-04-16 04:39:13 -04:00
|
|
|
template CheckCommand "clr-check-command" {
|
2014-12-12 14:40:24 -05:00
|
|
|
execute = ClrCheck
|
2014-04-16 04:39:13 -04:00
|
|
|
}
|
|
|
|
|
|
2013-06-13 05:33:00 -04:00
|
|
|
template NotificationCommand "plugin-notification-command" {
|
2014-12-12 14:40:24 -05:00
|
|
|
execute = PluginNotification
|
2013-06-13 05:33:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template EventCommand "plugin-event-command" {
|
2014-12-12 14:40:24 -05:00
|
|
|
execute = PluginEvent
|
2013-06-13 05:33:00 -04:00
|
|
|
}
|
2015-03-19 09:36:53 -04:00
|
|
|
|
|
|
|
|
template CheckCommand "random-check-command" {
|
|
|
|
|
execute = RandomCheck
|
|
|
|
|
}
|