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/customvarobject.hpp"
|
2016-08-16 11:02:10 +02:00
|
|
|
#impl_include "icinga/hostgroup.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-03 15:36:13 +02:00
|
|
|
class Host : Checkable
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
2016-08-14 23:03:28 +02:00
|
|
|
load_after ApiListener;
|
|
|
|
load_after Endpoint;
|
|
|
|
load_after Zone;
|
|
|
|
|
2017-05-30 14:47:28 +02:00
|
|
|
[config, no_user_modify, required] array(name(HostGroup)) 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 {
|
2013-10-30 09:55:00 +01:00
|
|
|
get {{{
|
2020-03-10 13:19:56 +01:00
|
|
|
if (m_DisplayName.m_Value.IsEmpty())
|
2013-10-30 09:55:00 +01:00
|
|
|
return GetName();
|
|
|
|
else
|
2020-03-10 13:19:56 +01:00
|
|
|
return m_DisplayName.m_Value;
|
2013-10-30 09:55:00 +01:00
|
|
|
}}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
2014-04-08 13:23:24 +02:00
|
|
|
|
|
|
|
[config] String address;
|
|
|
|
[config] String address6;
|
2015-02-09 08:50:17 +01:00
|
|
|
|
|
|
|
[enum, no_storage] HostState "state" {
|
|
|
|
get;
|
|
|
|
};
|
|
|
|
[enum, no_storage] HostState last_state {
|
|
|
|
get;
|
|
|
|
};
|
|
|
|
[enum, no_storage] HostState last_hard_state {
|
|
|
|
get;
|
|
|
|
};
|
2016-06-21 11:29:12 +02:00
|
|
|
[state] Timestamp last_state_up;
|
|
|
|
[state] Timestamp last_state_down;
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
2013-10-30 09:55:00 +01:00
|
|
|
}
|