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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "icinga/host.hpp"
#include "icinga/host-ti.cpp"
#include "icinga/service.hpp"
#include "icinga/hostgroup.hpp"
#include "icinga/pluginutility.hpp"
#include "icinga/scheduleddowntime.hpp"
#include "base/objectlock.hpp"
#include "base/convert.hpp"
#include "base/utility.hpp"
#include "base/debug.hpp"
#include "base/json.hpp"
using namespace icinga;
REGISTER_TYPE(Host);
void Host::OnAllConfigLoaded()
{
ObjectImpl<Host>::OnAllConfigLoaded();
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() + "'."));
}
HostGroup::EvaluateObjectRules(this);
Array::Ptr groups = GetGroups();
if (groups) {
groups = groups->ShallowClone();
ObjectLock olock(groups);
for (String name : groups) {
HostGroup::Ptr hg = HostGroup::GetByName(name);
if (hg)
hg->ResolveGroupMembership(this, true);
}
}
}
void Host::CreateChildObjects(const Type::Ptr& childType)
{
if (childType == ScheduledDowntime::TypeInstance)
ScheduledDowntime::EvaluateApplyRules(this);
if (childType == Notification::TypeInstance)
Notification::EvaluateApplyRules(this);
if (childType == Dependency::TypeInstance)
Dependency::EvaluateApplyRules(this);
if (childType == Service::TypeInstance)
Service::EvaluateApplyRules(this);
}
void Host::Stop(bool runtimeRemoved)
{
ObjectImpl<Host>::Stop(runtimeRemoved);
Array::Ptr groups = GetGroups();
if (groups) {
ObjectLock olock(groups);
for (String name : groups) {
HostGroup::Ptr hg = HostGroup::GetByName(name);
if (hg)
hg->ResolveGroupMembership(this, false);
}
}
// TODO: unregister slave services/notifications?
}
std::vector<Service::Ptr> Host::GetServices() const
{
std::unique_lock<std::mutex> lock(m_ServicesMutex);
std::vector<Service::Ptr> services;
services.reserve(m_Services.size());
for (auto& kv : m_Services) {
services.push_back(kv.second);
}
return services;
}
void Host::AddService(const Service::Ptr& service)
{
std::unique_lock<std::mutex> lock(m_ServicesMutex);
m_Services[service->GetShortName()] = service;
}
void Host::RemoveService(const Service::Ptr& service)
{
std::unique_lock<std::mutex> lock(m_ServicesMutex);
m_Services.erase(service->GetShortName());
}
int Host::GetTotalServices() const
{
return GetServices().size();
}
Service::Ptr Host::GetServiceByShortName(const Value& name)
{
if (name.IsScalar()) {
{
std::unique_lock<std::mutex> lock(m_ServicesMutex);
auto it = m_Services.find(name);
if (it != m_Services.end())
return it->second;
}
return nullptr;
} else if (name.IsObjectType<Dictionary>()) {
Dictionary::Ptr dict = name;
String short_name;
return Service::GetByNamePair(dict->Get("host"), dict->Get("service"));
} else {
BOOST_THROW_EXCEPTION(std::invalid_argument("Host/Service name pair is invalid: " + JsonEncode(name)));
}
}
HostState Host::CalculateState(ServiceState state)
{
switch (state) {
case ServiceOK:
case ServiceWarning:
return HostUp;
default:
return HostDown;
}
}
HostState Host::GetState() const
{
return CalculateState(GetStateRaw());
}
HostState Host::GetLastState() const
{
return CalculateState(GetLastStateRaw());
}
HostState Host::GetLastHardState() const
{
return CalculateState(GetLastHardStateRaw());
}
/* 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. */
int Host::GetSeverity() const
{
ObjectLock olock(this);
HostState state = GetState();
if (!HasBeenChecked()) {
return 16;
}
if (state == HostUp) {
return 0;
}
int severity = 32; // DOWN
if (IsAcknowledged()) {
severity += 512;
} else if (IsInDowntime()) {
severity += 256;
} else if (!IsReachable()) {
severity += 1024;
} else {
severity += 2048;
}
return severity;
}
bool Host::IsStateOK(ServiceState state) const
{
return Host::CalculateState(state) == HostUp;
}
void Host::SaveLastState(ServiceState state, double timestamp)
{
if (state == ServiceOK || state == ServiceWarning)
SetLastStateUp(timestamp);
else if (state == ServiceCritical)
SetLastStateDown(timestamp);
}
HostState Host::StateFromString(const String& state)
{
if (state == "UP")
return HostUp;
else
return HostDown;
}
String Host::StateToString(HostState state)
{
switch (state) {
case HostUp:
return "UP";
case HostDown:
return "DOWN";
default:
return "INVALID";
}
}
bool Host::ResolveMacro(const String& macro, const CheckResult::Ptr&, Value *result) const
{
if (macro == "state") {
*result = StateToString(GetState());
return true;
} else if (macro == "state_id") {
*result = GetState();
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") {
*result = GetLastState();
return true;
} else if (macro == "last_state_type") {
*result = StateTypeToString(GetLastStateType());
return true;
} else if (macro == "last_state_change") {
*result = static_cast<long>(GetLastStateChange());
return true;
} else if (macro == "downtime_depth") {
*result = GetDowntimeDepth();
return true;
} else if (macro == "duration_sec") {
*result = Utility::GetTime() - GetLastStateChange();
return true;
} else if (macro == "num_services" || macro == "num_services_ok" || macro == "num_services_warning"
|| macro == "num_services_unknown" || macro == "num_services_critical") {
int filter = -1;
int count = 0;
if (macro == "num_services_ok")
filter = ServiceOK;
else if (macro == "num_services_warning")
filter = ServiceWarning;
else if (macro == "num_services_unknown")
filter = ServiceUnknown;
else if (macro == "num_services_critical")
filter = ServiceCritical;
for (const Service::Ptr& service : GetServices()) {
if (filter != -1 && service->GetState() != filter)
continue;
count++;
}
*result = count;
return true;
}
CheckResult::Ptr cr = GetLastCheckResult();
if (cr) {
if (macro == "latency") {
*result = cr->CalculateLatency();
return true;
} else if (macro == "execution_time") {
*result = cr->CalculateExecutionTime();
return true;
} else if (macro == "output") {
*result = cr->GetOutput();
return true;
} else if (macro == "perfdata") {
*result = PluginUtility::FormatPerfdata(cr->GetPerformanceData());
return true;
} else if (macro == "check_source") {
*result = cr->GetCheckSource();
return true;
} else if (macro == "scheduling_source") {
*result = cr->GetSchedulingSource();
return true;
}
}
return false;
}
|