blob: 12c2d8c66c9d102074f9171d8318862a1864d636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "icinga/checkable.hpp"
#include "icinga/host.hpp"
#include "icinga/icingaapplication.hpp"
#include "icinga/customvarobject.hpp"
#impl_include "icinga/servicegroup.hpp"
library icinga;
namespace icinga
{
code {{{
class ServiceNameComposer : public NameComposer
{
public:
virtual String MakeName(const String& shortName, const Object::Ptr& context) const;
virtual Dictionary::Ptr ParseName(const String& name) const;
};
}}}
class Service : Checkable < ServiceNameComposer
{
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(); }}}
};
[config] String display_name {
get {{{
String displayName = m_DisplayName.load();
if (displayName.IsEmpty())
return GetShortName();
else
return displayName;
}}}
};
[config, no_user_modify, required] name(Host) host_name;
[no_storage, navigation] Host::Ptr host {
get;
navigate {{{
return GetHost();
}}}
};
[enum, no_storage] ServiceState "state" {
get {{{
return GetStateRaw();
}}}
};
[enum, no_storage] ServiceState last_state {
get {{{
return GetLastStateRaw();
}}}
};
[enum, no_storage] ServiceState last_hard_state {
get {{{
return GetLastHardStateRaw();
}}}
};
[state] Timestamp last_state_ok (LastStateOK);
[state] Timestamp last_state_warning;
[state] Timestamp last_state_critical;
[state] Timestamp last_state_unknown;
};
}
|