icinga2/lib/icinga/pluginchecktask.cpp

125 lines
3.9 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 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. *
******************************************************************************/
2012-09-10 14:07:32 +02:00
#include "i2-icinga.h"
using namespace icinga;
REGISTER_SCRIPTFUNCTION("native::PluginCheck", &PluginCheckTask::ScriptFunc);
PluginCheckTask::PluginCheckTask(const ScriptTask::Ptr& task, const Process::Ptr& process)
2012-07-15 17:29:59 +02:00
: m_Task(task), m_Process(process)
{ }
void PluginCheckTask::ScriptFunc(const ScriptTask::Ptr& task, const vector<Value>& arguments)
{
2012-07-14 15:59:59 +02:00
if (arguments.size() < 1)
2012-07-17 20:41:06 +02:00
throw_exception(invalid_argument("Missing argument: Service must be specified."));
2012-07-14 15:59:59 +02:00
Value vservice = arguments[0];
2012-07-30 10:17:29 +02:00
if (!vservice.IsObjectType<DynamicObject>())
2012-07-17 20:41:06 +02:00
throw_exception(invalid_argument("Argument must be a config object."));
2012-07-14 15:59:59 +02:00
Service::Ptr service = static_cast<Service::Ptr>(vservice);
2012-07-14 15:59:59 +02:00
String checkCommand = service->GetCheckCommand();
2012-07-13 11:29:23 +02:00
vector<Dictionary::Ptr> macroDicts;
macroDicts.push_back(service->GetMacros());
macroDicts.push_back(service->GetHost()->GetMacros());
2012-07-13 11:29:23 +02:00
macroDicts.push_back(IcingaApplication::GetInstance()->GetMacros());
String command = MacroProcessor::ResolveMacros(checkCommand, macroDicts);
2012-07-14 15:59:59 +02:00
2012-07-15 17:48:58 +02:00
Process::Ptr process = boost::make_shared<Process>(command);
PluginCheckTask ct(task, process);
2012-06-17 20:35:56 +02:00
process->Start(boost::bind(&PluginCheckTask::ProcessFinishedHandler, ct));
2012-06-17 20:35:56 +02:00
}
void PluginCheckTask::ProcessFinishedHandler(PluginCheckTask ct)
{
ProcessResult pr;
2012-07-15 17:29:59 +02:00
try {
pr = ct.m_Process->GetResult();
} catch (...) {
2012-07-15 17:29:59 +02:00
ct.m_Task->FinishException(boost::current_exception());
return;
}
2012-07-14 15:59:59 +02:00
Dictionary::Ptr result = boost::make_shared<Dictionary>();
result->Set("execution_start", pr.ExecutionStart);
result->Set("execution_end", pr.ExecutionEnd);
String output = pr.Output;
output.Trim();
ProcessCheckOutput(result, output);
2012-06-27 23:38:50 +02:00
ServiceState state;
switch (pr.ExitStatus) {
case 0:
state = StateOK;
break;
case 1:
state = StateWarning;
break;
case 2:
state = StateCritical;
break;
default:
state = StateUnknown;
break;
2012-06-19 09:38:20 +02:00
}
result->Set("state", state);
2012-06-27 23:38:50 +02:00
ct.m_Task->FinishResult(result);
}
void PluginCheckTask::ProcessCheckOutput(const Dictionary::Ptr& result, String& output)
{
String text;
String perfdata;
vector<String> lines = output.Split(is_any_of("\r\n"));
BOOST_FOREACH (const String& line, lines) {
size_t delim = line.FindFirstOf("|");
if (!text.IsEmpty())
text += "\n";
if (delim != String::NPos) {
text += line.SubStr(0, delim);
if (!perfdata.IsEmpty())
perfdata += " ";
perfdata += line.SubStr(delim + 1, line.GetLength());
} else {
text += line;
}
}
result->Set("output", text);
result->Set("performance_data_raw", perfdata);
}