2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-17 19:44:31 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/checkable.hpp"
|
|
|
|
#include "icinga/host.hpp"
|
|
|
|
#include "icinga/icingaapplication.hpp"
|
|
|
|
#include "icinga/customvarobject.hpp"
|
2016-08-16 11:02:10 +02:00
|
|
|
#impl_include "icinga/servicegroup.hpp"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library icinga;
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-04-05 22:17:20 +02:00
|
|
|
code {{{
|
2017-12-31 07:22:16 +01:00
|
|
|
class ServiceNameComposer : 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;
|
2015-08-13 09:02:52 +02:00
|
|
|
virtual Dictionary::Ptr ParseName(const String& name) const;
|
2014-04-05 22:17:20 +02:00
|
|
|
};
|
|
|
|
}}}
|
|
|
|
|
2014-04-06 08:09:49 +02:00
|
|
|
class Service : Checkable < ServiceNameComposer
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
2016-08-14 23:03:28 +02:00
|
|
|
load_after ApiListener;
|
|
|
|
load_after Endpoint;
|
2015-02-25 12:43:03 +01:00
|
|
|
load_after Host;
|
2016-08-14 23:03:28 +02:00
|
|
|
load_after Zone;
|
2015-02-25 12:43:03 +01:00
|
|
|
|
2021-10-08 16:43:09 +02:00
|
|
|
[config, no_user_modify, required, signal_with_old_value] array(name(ServiceGroup)) groups {
|
2015-04-20 14:16:19 +02:00
|
|
|
default {{{ return new Array(); }}}
|
|
|
|
};
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
[config] String display_name {
|
|
|
|
get {{{
|
2020-03-10 13:19:56 +01:00
|
|
|
if (m_DisplayName.m_Value.IsEmpty())
|
2013-10-26 09:41:45 +02:00
|
|
|
return GetShortName();
|
|
|
|
else
|
2020-03-10 13:19:56 +01:00
|
|
|
return m_DisplayName.m_Value;
|
2013-10-26 09:41:45 +02:00
|
|
|
}}}
|
|
|
|
};
|
2014-11-30 23:32:13 +01:00
|
|
|
[config, required] name(Host) host_name;
|
2015-09-22 09:42:30 +02:00
|
|
|
[no_storage, navigation] Host::Ptr host {
|
|
|
|
get;
|
|
|
|
navigate {{{
|
|
|
|
return GetHost();
|
|
|
|
}}}
|
|
|
|
};
|
2015-02-09 08:50:17 +01:00
|
|
|
[enum, no_storage] ServiceState "state" {
|
2014-04-03 15:36:13 +02:00
|
|
|
get {{{
|
|
|
|
return GetStateRaw();
|
|
|
|
}}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
2015-02-09 08:50:17 +01: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
|
|
|
};
|
2015-02-09 08:50:17 +01: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
|
|
|
};
|
2016-06-21 11:29:12 +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
|
|
|
};
|
|
|
|
|
|
|
|
}
|