2014-04-03 15:36:13 +02:00
|
|
|
#include "icinga/checkable.h"
|
2013-10-26 09:41:45 +02:00
|
|
|
#include "icinga/host.h"
|
|
|
|
#include "icinga/icingaapplication.h"
|
|
|
|
#include "base/dynamicobject.h"
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-04-05 22:17:20 +02:00
|
|
|
code {{{
|
|
|
|
class I2_ICINGA_API ServiceNameHelper : public DynamicObjectNameHelper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual String MakeObjectName(const String& shortName, const Dictionary::Ptr props) const;
|
|
|
|
};
|
|
|
|
}}}
|
|
|
|
|
|
|
|
class Service : Checkable < ServiceNameHelper
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
|
|
|
[config] String display_name {
|
|
|
|
get {{{
|
|
|
|
if (m_DisplayName.IsEmpty())
|
|
|
|
return GetShortName();
|
|
|
|
else
|
|
|
|
return m_DisplayName;
|
|
|
|
}}}
|
|
|
|
};
|
2014-04-05 09:15:40 +02:00
|
|
|
[config] String host_name;
|
2014-04-03 15:36:13 +02:00
|
|
|
[enum] ServiceState "state" {
|
|
|
|
get {{{
|
|
|
|
return GetStateRaw();
|
|
|
|
}}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
2014-04-03 15:36:13 +02:00
|
|
|
[enum] ServiceState last_state {
|
|
|
|
get {{{
|
|
|
|
return GetLastStateRaw();
|
|
|
|
}}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
2014-04-03 15:36:13 +02:00
|
|
|
[enum] ServiceState last_hard_state {
|
|
|
|
get {{{
|
|
|
|
return GetLastHardStateRaw();
|
|
|
|
}}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|