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-04-06 08:09:49 +02:00
|
|
|
virtual String MakeName(const String& shortName, const Dictionary::Ptr props) 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
|
|
|
{
|
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
|
|
|
|
|
|
|
[config] bool disable_checks;
|
|
|
|
[config] bool disable_notifications;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|