mirror of https://github.com/Icinga/icinga2.git
197 lines
5.5 KiB
C++
197 lines
5.5 KiB
C++
/******************************************************************************
|
|
* Icinga 2 *
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
|
* *
|
|
* 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. *
|
|
******************************************************************************/
|
|
|
|
#include "icinga/service.hpp"
|
|
#include "icinga/servicegroup.hpp"
|
|
#include "icinga/scheduleddowntime.hpp"
|
|
#include "icinga/pluginutility.hpp"
|
|
#include "base/objectlock.hpp"
|
|
#include "base/convert.hpp"
|
|
#include "base/utility.hpp"
|
|
#include <boost/foreach.hpp>
|
|
#include <boost/bind/apply.hpp>
|
|
|
|
using namespace icinga;
|
|
|
|
REGISTER_TYPE(Service);
|
|
|
|
String ServiceNameComposer::MakeName(const String& shortName, const Object::Ptr& context) const
|
|
{
|
|
Service::Ptr service = dynamic_pointer_cast<Service>(context);
|
|
|
|
if (!service)
|
|
return "";
|
|
|
|
return service->GetHostName() + "!" + shortName;
|
|
}
|
|
|
|
void Service::OnAllConfigLoaded(void)
|
|
{
|
|
Checkable::OnAllConfigLoaded();
|
|
|
|
m_Host = Host::GetByName(GetHostName());
|
|
|
|
if (m_Host)
|
|
m_Host->AddService(this);
|
|
|
|
ServiceGroup::EvaluateObjectRules(this);
|
|
|
|
Array::Ptr groups = GetGroups();
|
|
|
|
if (groups) {
|
|
groups = groups->ShallowClone();
|
|
|
|
ObjectLock olock(groups);
|
|
|
|
BOOST_FOREACH(const String& name, groups) {
|
|
ServiceGroup::Ptr sg = ServiceGroup::GetByName(name);
|
|
|
|
if (sg)
|
|
sg->ResolveGroupMembership(this, true);
|
|
}
|
|
}
|
|
|
|
ScheduledDowntime::EvaluateApplyRules(this);
|
|
Notification::EvaluateApplyRules(this);
|
|
Dependency::EvaluateApplyRules(this);
|
|
}
|
|
|
|
Service::Ptr Service::GetByNamePair(const String& hostName, const String& serviceName)
|
|
{
|
|
if (!hostName.IsEmpty()) {
|
|
Host::Ptr host = Host::GetByName(hostName);
|
|
|
|
if (!host)
|
|
return Service::Ptr();
|
|
|
|
return host->GetServiceByShortName(serviceName);
|
|
} else {
|
|
return Service::GetByName(serviceName);
|
|
}
|
|
}
|
|
|
|
Host::Ptr Service::GetHost(void) const
|
|
{
|
|
return m_Host;
|
|
}
|
|
|
|
ServiceState Service::StateFromString(const String& state)
|
|
{
|
|
if (state == "OK")
|
|
return ServiceOK;
|
|
else if (state == "WARNING")
|
|
return ServiceWarning;
|
|
else if (state == "CRITICAL")
|
|
return ServiceCritical;
|
|
else
|
|
return ServiceUnknown;
|
|
}
|
|
|
|
String Service::StateToString(ServiceState state)
|
|
{
|
|
switch (state) {
|
|
case ServiceOK:
|
|
return "OK";
|
|
case ServiceWarning:
|
|
return "WARNING";
|
|
case ServiceCritical:
|
|
return "CRITICAL";
|
|
case ServiceUnknown:
|
|
default:
|
|
return "UNKNOWN";
|
|
}
|
|
}
|
|
|
|
StateType Service::StateTypeFromString(const String& type)
|
|
{
|
|
if (type == "SOFT")
|
|
return StateTypeSoft;
|
|
else
|
|
return StateTypeHard;
|
|
}
|
|
|
|
String Service::StateTypeToString(StateType type)
|
|
{
|
|
if (type == StateTypeSoft)
|
|
return "SOFT";
|
|
else
|
|
return "HARD";
|
|
}
|
|
|
|
bool Service::ResolveMacro(const String& macro, const CheckResult::Ptr& cr, Value *result) const
|
|
{
|
|
if (macro == "state") {
|
|
*result = StateToString(GetState());
|
|
return true;
|
|
} else if (macro == "state_id") {
|
|
*result = Convert::ToString(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 = Convert::ToString(GetLastState());
|
|
return true;
|
|
} else if (macro == "last_state_type") {
|
|
*result = StateTypeToString(GetLastStateType());
|
|
return true;
|
|
} else if (macro == "last_state_change") {
|
|
*result = Convert::ToString((long)GetLastStateChange());
|
|
return true;
|
|
} else if (macro == "duration_sec") {
|
|
*result = Convert::ToString((long)(Utility::GetTime() - GetLastStateChange()));
|
|
return true;
|
|
}
|
|
|
|
if (cr) {
|
|
if (macro == "latency") {
|
|
*result = Convert::ToString(Service::CalculateLatency(cr));
|
|
return true;
|
|
} else if (macro == "execution_time") {
|
|
*result = Convert::ToString(Service::CalculateExecutionTime(cr));
|
|
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 == "last_check") {
|
|
*result = Convert::ToString((long)cr->GetExecutionEnd());
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
boost::tuple<Host::Ptr, Service::Ptr> icinga::GetHostService(const Checkable::Ptr& checkable)
|
|
{
|
|
Service::Ptr service = dynamic_pointer_cast<Service>(checkable);
|
|
|
|
if (service)
|
|
return boost::make_tuple(service->GetHost(), service);
|
|
else
|
|
return boost::make_tuple(static_pointer_cast<Host>(checkable), Service::Ptr());
|
|
}
|
|
|