icinga2/lib/icinga/service.ti

72 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2014-05-25 16:23:35 +02:00
#include "icinga/checkable.hpp"
#include "icinga/host.hpp"
#include "icinga/icingaapplication.hpp"
#include "icinga/customvarobject.hpp"
#impl_include "icinga/servicegroup.hpp"
2013-10-26 09:41:45 +02:00
library icinga;
2013-10-26 09:41:45 +02:00
namespace icinga
{
code {{{
2017-12-31 07:22:16 +01:00
class ServiceNameComposer : public NameComposer
{
public:
2014-11-06 19:35:47 +01:00
virtual String MakeName(const String& shortName, const Object::Ptr& context) const;
virtual Dictionary::Ptr ParseName(const String& name) const;
};
}}}
class Service : Checkable < ServiceNameComposer
2013-10-26 09:41:45 +02:00
{
load_after ApiListener;
load_after Endpoint;
load_after Host;
load_after Zone;
[config, no_user_modify, required, signal_with_old_value] array(name(ServiceGroup)) groups {
default {{{ return new Array(); }}}
};
2013-10-26 09:41:45 +02:00
[config] String display_name {
get {{{
String displayName = m_DisplayName.load();
if (displayName.IsEmpty())
2013-10-26 09:41:45 +02:00
return GetShortName();
else
return displayName;
2013-10-26 09:41:45 +02:00
}}}
};
[config, no_user_modify, required] name(Host) host_name;
[no_storage, navigation] Host::Ptr host {
get;
navigate {{{
return GetHost();
}}}
};
[enum, no_storage] ServiceState "state" {
2014-04-03 15:36:13 +02:00
get {{{
return GetStateRaw();
}}}
2013-10-26 09:41:45 +02:00
};
[enum, no_storage] ServiceState last_state {
2014-04-03 15:36:13 +02:00
get {{{
return GetLastStateRaw();
}}}
2013-10-26 09:41:45 +02:00
};
[enum, no_storage] ServiceState last_hard_state {
2014-04-03 15:36:13 +02:00
get {{{
return GetLastHardStateRaw();
}}}
2013-10-26 09:41:45 +02:00
};
[state] Timestamp last_state_ok (LastStateOK);
[state] Timestamp last_state_warning;
[state] Timestamp last_state_critical;
[state] Timestamp last_state_unknown;
2013-10-26 09:41:45 +02:00
};
}