2014-10-17 19:44:31 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2014-10-17 19:44:31 +02: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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/customvarobject.hpp"
|
|
|
|
#include "icinga/checkable.hpp"
|
2014-02-27 11:05:55 +01:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-04-05 22:17:20 +02:00
|
|
|
code {{{
|
2014-04-06 08:09:49 +02:00
|
|
|
class I2_ICINGA_API DependencyNameComposer : public NameComposer
|
2014-04-05 22:17:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-06 19:35:47 +01:00
|
|
|
virtual String MakeName(const String& shortName, const Object::Ptr& context) const;
|
2014-04-05 22:17:20 +02:00
|
|
|
};
|
|
|
|
}}}
|
|
|
|
|
2014-05-12 16:45:25 +02:00
|
|
|
class Dependency : CustomVarObject < DependencyNameComposer
|
2014-02-27 11:05:55 +01:00
|
|
|
{
|
2015-02-25 12:43:03 +01:00
|
|
|
load_after Host;
|
|
|
|
load_after Service;
|
|
|
|
|
2014-04-05 09:15:40 +02:00
|
|
|
[config] String child_host_name;
|
|
|
|
[config] String child_service_name;
|
2014-02-27 11:05:55 +01:00
|
|
|
|
2014-04-05 09:15:40 +02:00
|
|
|
[config] String parent_host_name;
|
|
|
|
[config] String parent_service_name;
|
2014-02-27 11:05:55 +01:00
|
|
|
|
|
|
|
[config] String period (PeriodRaw);
|
|
|
|
|
2014-04-09 10:25:23 +02:00
|
|
|
[config] Array::Ptr states;
|
2014-04-07 13:59:41 +02:00
|
|
|
int state_filter_real (StateFilter);
|
2014-02-27 11:05:55 +01:00
|
|
|
|
2015-02-08 00:30:58 +01:00
|
|
|
[config] bool ignore_soft_states {
|
|
|
|
default {{{ return true; }}}
|
|
|
|
};
|
|
|
|
|
2014-02-27 11:05:55 +01:00
|
|
|
[config] bool disable_checks;
|
2014-10-11 19:33:03 +02:00
|
|
|
[config] bool disable_notifications {
|
|
|
|
default {{{ return true; }}}
|
|
|
|
};
|
2014-02-27 11:05:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|