2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-07-09 20:32:02 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/host.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "icinga/host-ti.cpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/service.hpp"
|
|
|
|
#include "icinga/hostgroup.hpp"
|
|
|
|
#include "icinga/pluginutility.hpp"
|
2014-11-16 16:20:39 +01:00
|
|
|
#include "icinga/scheduleddowntime.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include "base/debug.hpp"
|
2014-10-26 19:59:49 +01:00
|
|
|
#include "base/json.hpp"
|
2012-06-13 13:42:55 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
REGISTER_TYPE(Host);
|
2012-07-09 17:07:20 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void Host::OnAllConfigLoaded()
|
2013-02-26 10:13:54 +01:00
|
|
|
{
|
2015-08-25 13:53:43 +02:00
|
|
|
ObjectImpl<Host>::OnAllConfigLoaded();
|
2013-02-26 10:13:54 +01:00
|
|
|
|
2016-01-14 15:33:28 +01:00
|
|
|
String zoneName = GetZoneName();
|
|
|
|
|
|
|
|
if (!zoneName.IsEmpty()) {
|
|
|
|
Zone::Ptr zone = Zone::GetByName(zoneName);
|
|
|
|
|
|
|
|
if (zone && zone->IsGlobal())
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Host '" + GetName() + "' cannot be put into global zone '" + zone->GetName() + "'."));
|
|
|
|
}
|
|
|
|
|
2014-11-21 18:31:37 +01:00
|
|
|
HostGroup::EvaluateObjectRules(this);
|
2013-02-20 19:52:25 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
Array::Ptr groups = GetGroups();
|
|
|
|
|
|
|
|
if (groups) {
|
2014-10-28 18:58:22 +01:00
|
|
|
groups = groups->ShallowClone();
|
|
|
|
|
2013-09-09 13:52:37 +02:00
|
|
|
ObjectLock olock(groups);
|
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const String& name : groups) {
|
2013-08-20 11:06:04 +02:00
|
|
|
HostGroup::Ptr hg = HostGroup::GetByName(name);
|
2013-02-08 21:05:08 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (hg)
|
2014-11-08 21:17:16 +01:00
|
|
|
hg->ResolveGroupMembership(this, true);
|
2013-02-08 21:05:08 +01:00
|
|
|
}
|
|
|
|
}
|
2015-03-19 15:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Host::CreateChildObjects(const Type::Ptr& childType)
|
|
|
|
{
|
2016-08-20 23:46:44 +02:00
|
|
|
if (childType == ScheduledDowntime::TypeInstance)
|
2015-03-19 15:47:46 +01:00
|
|
|
ScheduledDowntime::EvaluateApplyRules(this);
|
|
|
|
|
2016-08-20 23:46:44 +02:00
|
|
|
if (childType == Notification::TypeInstance)
|
2015-03-19 15:47:46 +01:00
|
|
|
Notification::EvaluateApplyRules(this);
|
|
|
|
|
2016-08-20 23:46:44 +02:00
|
|
|
if (childType == Dependency::TypeInstance)
|
2015-03-19 15:47:46 +01:00
|
|
|
Dependency::EvaluateApplyRules(this);
|
2014-11-16 16:20:39 +01:00
|
|
|
|
2016-08-20 23:46:44 +02:00
|
|
|
if (childType == Service::TypeInstance)
|
2015-03-19 15:47:46 +01:00
|
|
|
Service::EvaluateApplyRules(this);
|
2013-01-24 15:01:06 +01:00
|
|
|
}
|
|
|
|
|
2015-08-20 17:18:48 +02:00
|
|
|
void Host::Stop(bool runtimeRemoved)
|
2013-02-27 12:44:51 +01:00
|
|
|
{
|
2015-08-20 17:18:48 +02:00
|
|
|
ObjectImpl<Host>::Stop(runtimeRemoved);
|
2013-03-02 09:07:47 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
Array::Ptr groups = GetGroups();
|
2013-02-27 12:44:51 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (groups) {
|
2013-09-09 13:52:37 +02:00
|
|
|
ObjectLock olock(groups);
|
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const String& name : groups) {
|
2013-08-20 11:06:04 +02:00
|
|
|
HostGroup::Ptr hg = HostGroup::GetByName(name);
|
|
|
|
|
|
|
|
if (hg)
|
2014-11-08 21:17:16 +01:00
|
|
|
hg->ResolveGroupMembership(this, false);
|
2013-08-20 11:06:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: unregister slave services/notifications?
|
2013-02-27 12:44:51 +01:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
std::vector<Service::Ptr> Host::GetServices() const
|
2013-01-24 15:10:17 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
boost::mutex::scoped_lock lock(m_ServicesMutex);
|
2013-01-24 15:10:17 +01:00
|
|
|
|
2015-10-22 08:28:40 +02:00
|
|
|
std::vector<Service::Ptr> services;
|
|
|
|
services.reserve(m_Services.size());
|
2013-11-30 17:42:50 +01:00
|
|
|
typedef std::pair<String, Service::Ptr> ServicePair;
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const ServicePair& kv : m_Services) {
|
2015-10-22 08:28:40 +02:00
|
|
|
services.push_back(kv.second);
|
2013-01-24 15:10:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return services;
|
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void Host::AddService(const Service::Ptr& service)
|
2013-07-05 09:35:49 +02:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
boost::mutex::scoped_lock lock(m_ServicesMutex);
|
|
|
|
|
|
|
|
m_Services[service->GetShortName()] = service;
|
2013-07-05 09:35:49 +02:00
|
|
|
}
|
2013-07-09 16:59:31 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void Host::RemoveService(const Service::Ptr& service)
|
2013-02-27 15:23:25 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
boost::mutex::scoped_lock lock(m_ServicesMutex);
|
2013-02-27 16:04:49 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
m_Services.erase(service->GetShortName());
|
2013-02-27 15:23:25 +01:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
int Host::GetTotalServices() const
|
2013-01-24 15:10:17 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
return GetServices().size();
|
2013-01-24 15:10:17 +01:00
|
|
|
}
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
Service::Ptr Host::GetServiceByShortName(const Value& name)
|
2013-02-07 20:29:35 +01:00
|
|
|
{
|
2014-04-03 15:36:13 +02:00
|
|
|
if (name.IsScalar()) {
|
2013-02-27 12:44:51 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
boost::mutex::scoped_lock lock(m_ServicesMutex);
|
2013-02-26 10:13:54 +01:00
|
|
|
|
2016-08-27 08:33:15 +02:00
|
|
|
auto it = m_Services.find(name);
|
2013-02-08 15:38:22 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (it != m_Services.end())
|
|
|
|
return it->second;
|
2013-02-08 21:30:14 +01:00
|
|
|
}
|
2013-02-08 15:38:22 +01:00
|
|
|
|
2017-11-30 08:36:35 +01:00
|
|
|
return nullptr;
|
2013-02-08 21:30:14 +01:00
|
|
|
} else if (name.IsObjectType<Dictionary>()) {
|
|
|
|
Dictionary::Ptr dict = name;
|
2013-02-27 15:23:25 +01:00
|
|
|
String short_name;
|
|
|
|
|
2013-03-02 09:07:47 +01:00
|
|
|
return Service::GetByNamePair(dict->Get("host"), dict->Get("service"));
|
2013-02-08 21:30:14 +01:00
|
|
|
} else {
|
2014-10-26 19:59:49 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Host/Service name pair is invalid: " + JsonEncode(name)));
|
2013-02-08 21:30:14 +01:00
|
|
|
}
|
2013-02-07 20:29:35 +01:00
|
|
|
}
|
|
|
|
|
2014-04-08 08:54:49 +02:00
|
|
|
HostState Host::CalculateState(ServiceState state)
|
2013-03-07 12:04:20 +01:00
|
|
|
{
|
2013-03-19 13:04:30 +01:00
|
|
|
switch (state) {
|
2014-04-08 09:11:54 +02:00
|
|
|
case ServiceOK:
|
|
|
|
case ServiceWarning:
|
2013-03-07 12:04:20 +01:00
|
|
|
return HostUp;
|
|
|
|
default:
|
|
|
|
return HostDown;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
HostState Host::GetState() const
|
2013-07-05 09:35:49 +02:00
|
|
|
{
|
2014-04-08 08:54:49 +02:00
|
|
|
return CalculateState(GetStateRaw());
|
2013-07-05 09:35:49 +02:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
HostState Host::GetLastState() const
|
2013-03-07 12:04:20 +01:00
|
|
|
{
|
2014-04-08 08:54:49 +02:00
|
|
|
return CalculateState(GetLastStateRaw());
|
2013-03-07 12:04:20 +01:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
HostState Host::GetLastHardState() const
|
2013-07-05 09:35:49 +02:00
|
|
|
{
|
2014-04-08 08:54:49 +02:00
|
|
|
return CalculateState(GetLastHardStateRaw());
|
2013-07-05 09:35:49 +02:00
|
|
|
}
|
|
|
|
|
2018-12-07 16:33:10 +01:00
|
|
|
/* keep in sync with Service::GetSeverity()
|
|
|
|
* One could think it may be smart to use an enum and some bitmask math here.
|
|
|
|
* But the only thing the consuming icingaweb2 cares about is being able to
|
|
|
|
* sort by severity. It is therefore easier to keep them seperated here. */
|
2018-01-04 04:25:35 +01:00
|
|
|
int Host::GetSeverity() const
|
2017-02-09 15:32:10 +01:00
|
|
|
{
|
|
|
|
int severity = 0;
|
|
|
|
|
|
|
|
ObjectLock olock(this);
|
2018-12-07 16:33:10 +01:00
|
|
|
HostState state = GetState();
|
2017-02-09 15:32:10 +01:00
|
|
|
|
2018-12-07 16:33:10 +01:00
|
|
|
if (!HasBeenChecked()) {
|
|
|
|
severity = 16;
|
|
|
|
} else if (state == HostUp) {
|
|
|
|
severity = 0;
|
|
|
|
} else {
|
|
|
|
if (IsReachable())
|
|
|
|
severity = 64;
|
|
|
|
else
|
|
|
|
severity = 32;
|
|
|
|
|
|
|
|
if (IsAcknowledged())
|
|
|
|
severity += 512;
|
|
|
|
else if (IsInDowntime())
|
|
|
|
severity += 256;
|
|
|
|
else
|
|
|
|
severity += 2048;
|
|
|
|
}
|
2017-02-09 15:32:10 +01:00
|
|
|
|
|
|
|
olock.Unlock();
|
|
|
|
|
|
|
|
return severity;
|
2018-12-07 16:33:10 +01:00
|
|
|
|
2017-02-09 15:32:10 +01:00
|
|
|
}
|
|
|
|
|
2019-04-09 11:26:34 +02:00
|
|
|
bool Host::IsStateOK(ServiceState state) const
|
2016-03-15 09:46:20 +01:00
|
|
|
{
|
|
|
|
return Host::CalculateState(state) == HostUp;
|
|
|
|
}
|
|
|
|
|
2015-11-02 14:10:44 +01:00
|
|
|
void Host::SaveLastState(ServiceState state, double timestamp)
|
2013-07-18 18:16:39 +02:00
|
|
|
{
|
2015-11-02 14:10:44 +01:00
|
|
|
if (state == ServiceOK || state == ServiceWarning)
|
|
|
|
SetLastStateUp(timestamp);
|
|
|
|
else if (state == ServiceCritical)
|
|
|
|
SetLastStateDown(timestamp);
|
2013-07-05 09:35:49 +02:00
|
|
|
}
|
|
|
|
|
2013-10-29 13:44:43 +01:00
|
|
|
HostState Host::StateFromString(const String& state)
|
|
|
|
{
|
|
|
|
if (state == "UP")
|
|
|
|
return HostUp;
|
|
|
|
else
|
2014-04-08 08:54:49 +02:00
|
|
|
return HostDown;
|
2013-10-29 13:44:43 +01:00
|
|
|
}
|
|
|
|
|
2013-03-19 13:04:30 +01:00
|
|
|
String Host::StateToString(HostState state)
|
2013-03-07 12:04:20 +01:00
|
|
|
{
|
|
|
|
switch (state) {
|
|
|
|
case HostUp:
|
|
|
|
return "UP";
|
|
|
|
case HostDown:
|
|
|
|
return "DOWN";
|
|
|
|
default:
|
|
|
|
return "INVALID";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-29 13:44:43 +01:00
|
|
|
StateType Host::StateTypeFromString(const String& type)
|
|
|
|
{
|
|
|
|
if (type == "SOFT")
|
|
|
|
return StateTypeSoft;
|
|
|
|
else
|
|
|
|
return StateTypeHard;
|
|
|
|
}
|
|
|
|
|
|
|
|
String Host::StateTypeToString(StateType type)
|
|
|
|
{
|
|
|
|
if (type == StateTypeSoft)
|
|
|
|
return "SOFT";
|
|
|
|
else
|
|
|
|
return "HARD";
|
|
|
|
}
|
|
|
|
|
2014-11-26 20:43:42 +01:00
|
|
|
bool Host::ResolveMacro(const String& macro, const CheckResult::Ptr&, Value *result) const
|
2013-02-09 18:39:43 +01:00
|
|
|
{
|
2014-04-08 13:23:24 +02:00
|
|
|
if (macro == "state") {
|
|
|
|
*result = StateToString(GetState());
|
|
|
|
return true;
|
|
|
|
} else if (macro == "state_id") {
|
2016-06-16 15:14:35 +02:00
|
|
|
*result = GetState();
|
2014-04-08 13:23:24 +02:00
|
|
|
return true;
|
|
|
|
} else if (macro == "state_type") {
|
|
|
|
*result = StateTypeToString(GetStateType());
|
|
|
|
return true;
|
|
|
|
} else if (macro == "last_state") {
|
|
|
|
*result = StateToString(GetLastState());
|
|
|
|
return true;
|
|
|
|
} else if (macro == "last_state_id") {
|
2016-06-16 15:14:35 +02:00
|
|
|
*result = GetLastState();
|
2014-04-08 13:23:24 +02:00
|
|
|
return true;
|
|
|
|
} else if (macro == "last_state_type") {
|
|
|
|
*result = StateTypeToString(GetLastStateType());
|
|
|
|
return true;
|
|
|
|
} else if (macro == "last_state_change") {
|
2016-06-21 11:29:12 +02:00
|
|
|
*result = static_cast<long>(GetLastStateChange());
|
2014-04-08 13:23:24 +02:00
|
|
|
return true;
|
2015-02-08 00:15:38 +01:00
|
|
|
} else if (macro == "downtime_depth") {
|
2016-06-16 15:14:35 +02:00
|
|
|
*result = GetDowntimeDepth();
|
2015-02-08 00:15:38 +01:00
|
|
|
return true;
|
2014-04-08 13:23:24 +02:00
|
|
|
} else if (macro == "duration_sec") {
|
2016-06-16 15:14:35 +02:00
|
|
|
*result = Utility::GetTime() - GetLastStateChange();
|
2014-04-08 13:23:24 +02:00
|
|
|
return true;
|
2014-05-11 15:08:32 +02:00
|
|
|
} else if (macro == "num_services" || macro == "num_services_ok" || macro == "num_services_warning"
|
2017-12-19 15:50:05 +01:00
|
|
|
|| macro == "num_services_unknown" || macro == "num_services_critical") {
|
2014-04-08 13:23:24 +02:00
|
|
|
int filter = -1;
|
|
|
|
int count = 0;
|
|
|
|
|
2014-05-11 15:08:32 +02:00
|
|
|
if (macro == "num_services_ok")
|
2014-04-08 13:23:24 +02:00
|
|
|
filter = ServiceOK;
|
2014-05-11 15:08:32 +02:00
|
|
|
else if (macro == "num_services_warning")
|
2014-04-08 13:23:24 +02:00
|
|
|
filter = ServiceWarning;
|
2014-05-11 15:08:32 +02:00
|
|
|
else if (macro == "num_services_unknown")
|
2014-04-08 13:23:24 +02:00
|
|
|
filter = ServiceUnknown;
|
2014-05-11 15:08:32 +02:00
|
|
|
else if (macro == "num_services_critical")
|
2014-04-08 13:23:24 +02:00
|
|
|
filter = ServiceCritical;
|
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Service::Ptr& service : GetServices()) {
|
2014-04-08 13:23:24 +02:00
|
|
|
if (filter != -1 && service->GetState() != filter)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
count++;
|
|
|
|
}
|
2014-04-05 17:45:28 +02:00
|
|
|
|
2016-06-16 15:14:35 +02:00
|
|
|
*result = count;
|
2014-04-05 17:45:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
CheckResult::Ptr cr = GetLastCheckResult();
|
2014-04-04 20:09:23 +02:00
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
if (cr) {
|
|
|
|
if (macro == "latency") {
|
2016-06-16 15:14:35 +02:00
|
|
|
*result = cr->CalculateLatency();
|
2014-04-04 20:09:23 +02:00
|
|
|
return true;
|
2014-04-08 13:23:24 +02:00
|
|
|
} else if (macro == "execution_time") {
|
2016-06-16 15:14:35 +02:00
|
|
|
*result = cr->CalculateExecutionTime();
|
2014-04-04 20:09:23 +02:00
|
|
|
return true;
|
2014-04-08 13:23:24 +02:00
|
|
|
} else if (macro == "output") {
|
|
|
|
*result = cr->GetOutput();
|
2014-04-04 20:09:23 +02:00
|
|
|
return true;
|
2014-04-08 13:23:24 +02:00
|
|
|
} else if (macro == "perfdata") {
|
|
|
|
*result = PluginUtility::FormatPerfdata(cr->GetPerformanceData());
|
2014-04-04 20:09:23 +02:00
|
|
|
return true;
|
2015-01-25 14:30:05 +01:00
|
|
|
} else if (macro == "check_source") {
|
|
|
|
*result = cr->GetCheckSource();
|
|
|
|
return true;
|
2014-04-05 17:13:17 +02:00
|
|
|
}
|
2013-02-24 01:10:34 +01:00
|
|
|
}
|
|
|
|
|
2013-03-22 14:40:55 +01:00
|
|
|
return false;
|
2013-02-09 18:39:43 +01:00
|
|
|
}
|