2014-10-17 19:44:31 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2014-10-17 19:44:31 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
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 {{{
|
2014-04-06 08:09:49 +02:00
|
|
|
class I2_ICINGA_API 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
|
|
|
|
2015-10-20 08:20:35 +02:00
|
|
|
[config, no_user_modify] 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 {{{
|
|
|
|
if (m_DisplayName.IsEmpty())
|
|
|
|
return GetShortName();
|
|
|
|
else
|
|
|
|
return m_DisplayName;
|
|
|
|
}}}
|
|
|
|
};
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|