2012-07-09 20:32:02 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-07-09 20:32:02 +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/service.hpp"
|
|
|
|
#include "icinga/servicegroup.hpp"
|
|
|
|
#include "icinga/pluginutility.hpp"
|
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
#include "base/utility.hpp"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2013-09-01 06:01:27 +02:00
|
|
|
#include <boost/bind/apply.hpp>
|
2012-06-13 13:42:55 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
REGISTER_TYPE(Service);
|
2012-07-26 12:28:29 +02:00
|
|
|
|
2014-11-06 19:35:47 +01:00
|
|
|
String ServiceNameComposer::MakeName(const String& shortName, const Object::Ptr& context) const
|
|
|
|
{
|
|
|
|
Service::Ptr service = dynamic_pointer_cast<Service>(context);
|
|
|
|
|
|
|
|
if (!service)
|
2014-04-05 22:17:20 +02:00
|
|
|
return "";
|
|
|
|
|
2014-11-06 19:35:47 +01:00
|
|
|
return service->GetHostName() + "!" + shortName;
|
2014-04-05 22:17:20 +02:00
|
|
|
}
|
|
|
|
|
2013-08-29 16:53:57 +02:00
|
|
|
void Service::OnConfigLoaded(void)
|
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
Array::Ptr groups = GetGroups();
|
2013-02-20 19:52:25 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (groups) {
|
2014-10-28 18:58:22 +01:00
|
|
|
groups = groups->ShallowClone();
|
|
|
|
|
2013-09-09 13:52:37 +02:00
|
|
|
ObjectLock olock(groups);
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
BOOST_FOREACH(const String& name, groups) {
|
|
|
|
ServiceGroup::Ptr sg = ServiceGroup::GetByName(name);
|
2012-08-02 09:38:08 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (sg)
|
2014-04-14 20:59:41 +02:00
|
|
|
sg->ResolveGroupMembership(GetSelf(), true);
|
2013-08-20 11:06:04 +02:00
|
|
|
}
|
|
|
|
}
|
2013-03-02 09:07:47 +01:00
|
|
|
|
2014-04-05 09:15:40 +02:00
|
|
|
m_Host = Host::GetByName(GetHostName());
|
2013-11-10 22:04:18 +01:00
|
|
|
|
|
|
|
if (m_Host)
|
|
|
|
m_Host->AddService(GetSelf());
|
2013-08-29 16:53:57 +02:00
|
|
|
|
2013-11-21 16:09:21 +01:00
|
|
|
SetSchedulingOffset(Utility::Random());
|
2013-11-13 14:56:31 +01:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
Checkable::OnConfigLoaded();
|
2013-11-13 14:56:31 +01:00
|
|
|
}
|
|
|
|
|
2013-02-08 15:38:22 +01:00
|
|
|
Service::Ptr Service::GetByNamePair(const String& hostName, const String& serviceName)
|
|
|
|
{
|
|
|
|
if (!hostName.IsEmpty()) {
|
|
|
|
Host::Ptr host = Host::GetByName(hostName);
|
2013-02-27 15:23:25 +01:00
|
|
|
|
|
|
|
if (!host)
|
|
|
|
return Service::Ptr();
|
|
|
|
|
2013-03-02 09:07:47 +01:00
|
|
|
return host->GetServiceByShortName(serviceName);
|
2013-02-08 15:38:22 +01:00
|
|
|
} else {
|
|
|
|
return Service::GetByName(serviceName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
Host::Ptr Service::GetHost(void) const
|
2012-06-13 13:42:55 +02:00
|
|
|
{
|
2013-11-10 22:04:18 +01:00
|
|
|
return m_Host;
|
2013-02-08 15:38:22 +01:00
|
|
|
}
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
ServiceState Service::StateFromString(const String& state)
|
2013-07-09 16:59:31 +02:00
|
|
|
{
|
2014-04-03 15:36:13 +02:00
|
|
|
if (state == "OK")
|
2014-04-08 09:11:54 +02:00
|
|
|
return ServiceOK;
|
2014-04-03 15:36:13 +02:00
|
|
|
else if (state == "WARNING")
|
2014-04-08 09:11:54 +02:00
|
|
|
return ServiceWarning;
|
2014-04-03 15:36:13 +02:00
|
|
|
else if (state == "CRITICAL")
|
2014-04-08 09:11:54 +02:00
|
|
|
return ServiceCritical;
|
2014-04-03 15:36:13 +02:00
|
|
|
else
|
2014-04-08 09:11:54 +02:00
|
|
|
return ServiceUnknown;
|
2013-02-11 16:38:16 +01:00
|
|
|
}
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
String Service::StateToString(ServiceState state)
|
2013-02-24 12:47:24 +01:00
|
|
|
{
|
2014-04-03 15:36:13 +02:00
|
|
|
switch (state) {
|
2014-04-08 09:11:54 +02:00
|
|
|
case ServiceOK:
|
2014-04-03 15:36:13 +02:00
|
|
|
return "OK";
|
2014-04-08 09:11:54 +02:00
|
|
|
case ServiceWarning:
|
2014-04-03 15:36:13 +02:00
|
|
|
return "WARNING";
|
2014-04-08 09:11:54 +02:00
|
|
|
case ServiceCritical:
|
2014-04-03 15:36:13 +02:00
|
|
|
return "CRITICAL";
|
2014-04-08 09:11:54 +02:00
|
|
|
case ServiceUnknown:
|
2014-04-03 15:36:13 +02:00
|
|
|
default:
|
|
|
|
return "UNKNOWN";
|
2013-03-08 16:36:26 +01:00
|
|
|
}
|
2013-02-24 12:47:24 +01:00
|
|
|
}
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
StateType Service::StateTypeFromString(const String& type)
|
2013-02-24 12:47:24 +01:00
|
|
|
{
|
2014-04-03 15:36:13 +02:00
|
|
|
if (type == "SOFT")
|
|
|
|
return StateTypeSoft;
|
2013-11-26 11:51:06 +01:00
|
|
|
else
|
2014-04-03 15:36:13 +02:00
|
|
|
return StateTypeHard;
|
2013-10-16 11:46:54 +02:00
|
|
|
}
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
String Service::StateTypeToString(StateType type)
|
2013-10-16 11:46:54 +02:00
|
|
|
{
|
2014-04-03 15:36:13 +02:00
|
|
|
if (type == StateTypeSoft)
|
|
|
|
return "SOFT";
|
|
|
|
else
|
|
|
|
return "HARD";
|
2013-10-16 11:46:54 +02:00
|
|
|
}
|
|
|
|
|
2013-11-09 14:22:38 +01:00
|
|
|
bool Service::ResolveMacro(const String& macro, const CheckResult::Ptr& cr, String *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") {
|
|
|
|
*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;
|
|
|
|
}
|
2014-04-04 20:09:23 +02:00
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
if (cr) {
|
|
|
|
if (macro == "latency") {
|
|
|
|
*result = Convert::ToString(Service::CalculateLatency(cr));
|
2014-04-04 20:09:23 +02:00
|
|
|
return true;
|
2014-04-08 13:23:24 +02:00
|
|
|
} else if (macro == "execution_time") {
|
|
|
|
*result = Convert::ToString(Service::CalculateExecutionTime(cr));
|
2013-03-22 14:40:55 +01:00
|
|
|
return true;
|
2014-04-08 13:23:24 +02:00
|
|
|
} else if (macro == "output") {
|
|
|
|
*result = cr->GetOutput();
|
2013-03-22 14:40:55 +01:00
|
|
|
return true;
|
2014-04-08 13:23:24 +02:00
|
|
|
} else if (macro == "perfdata") {
|
|
|
|
*result = PluginUtility::FormatPerfdata(cr->GetPerformanceData());
|
2013-03-22 14:40:55 +01:00
|
|
|
return true;
|
2014-04-08 13:23:24 +02:00
|
|
|
} else if (macro == "last_check") {
|
|
|
|
*result = Convert::ToString((long)cr->GetExecutionEnd());
|
2014-04-05 17:13:17 +02:00
|
|
|
return true;
|
|
|
|
}
|
2013-03-07 12:04:20 +01:00
|
|
|
}
|
|
|
|
|
2013-03-22 14:40:55 +01:00
|
|
|
return false;
|
2013-03-07 12:04:20 +01:00
|
|
|
}
|
2014-04-03 15:36:13 +02:00
|
|
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|