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 "methods/pluginchecktask.hpp"
|
|
|
|
#include "icinga/pluginutility.hpp"
|
|
|
|
#include "icinga/checkcommand.hpp"
|
|
|
|
#include "icinga/macroprocessor.hpp"
|
|
|
|
#include "icinga/icingaapplication.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2015-01-21 08:47:45 +01:00
|
|
|
#include "base/function.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include "base/process.hpp"
|
2014-08-21 11:25:04 +02:00
|
|
|
#include "base/convert.hpp"
|
2012-06-13 13:42:55 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-08-07 13:55:41 +02:00
|
|
|
REGISTER_FUNCTION_NONCONST(Internal, PluginCheck, &PluginCheckTask::ScriptFunc, "checkable:cr:resolvedMacros:useResolvedMacros");
|
2013-01-22 09:21:50 +01:00
|
|
|
|
2014-11-13 11:23:57 +01:00
|
|
|
void PluginCheckTask::ScriptFunc(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros)
|
2012-06-13 13:42:55 +02:00
|
|
|
{
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(checkable);
|
|
|
|
REQUIRE_NOT_NULL(cr);
|
2018-01-30 11:26:07 +01:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
CheckCommand::Ptr commandObj = checkable->GetCheckCommand();
|
2012-07-14 15:59:59 +02:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
Host::Ptr host;
|
|
|
|
Service::Ptr service;
|
2014-04-07 22:06:05 +02:00
|
|
|
tie(host, service) = GetHostService(checkable);
|
2014-04-03 15:36:13 +02:00
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
MacroProcessor::ResolverList resolvers;
|
2014-04-07 22:06:05 +02:00
|
|
|
if (service)
|
2017-11-30 08:19:58 +01:00
|
|
|
resolvers.emplace_back("service", service);
|
|
|
|
resolvers.emplace_back("host", host);
|
|
|
|
resolvers.emplace_back("command", commandObj);
|
|
|
|
resolvers.emplace_back("icinga", IcingaApplication::GetInstance());
|
2013-03-22 14:40:55 +01:00
|
|
|
|
2018-09-28 14:32:57 +02:00
|
|
|
int timeout = commandObj->GetTimeout();
|
|
|
|
|
|
|
|
if (!checkable->GetCheckTimeout().IsEmpty())
|
|
|
|
timeout = checkable->GetCheckTimeout();
|
|
|
|
|
2014-11-13 11:23:57 +01:00
|
|
|
PluginUtility::ExecuteCommand(commandObj, checkable, checkable->GetLastCheckResult(),
|
2018-09-28 14:32:57 +02:00
|
|
|
resolvers, resolvedMacros, useResolvedMacros, timeout,
|
2017-12-19 15:50:05 +01:00
|
|
|
std::bind(&PluginCheckTask::ProcessFinishedHandler, checkable, cr, _1, _2));
|
2016-05-18 14:30:36 +02:00
|
|
|
|
2019-08-14 17:43:06 +02:00
|
|
|
if (!resolvedMacros || useResolvedMacros) {
|
|
|
|
Checkable::CurrentConcurrentChecks.fetch_add(1);
|
2016-05-18 14:30:36 +02:00
|
|
|
Checkable::IncreasePendingChecks();
|
2019-08-14 17:43:06 +02:00
|
|
|
}
|
2014-03-12 10:05:36 +01:00
|
|
|
}
|
2012-07-14 15:59:59 +02:00
|
|
|
|
2014-04-26 13:16:08 +02:00
|
|
|
void PluginCheckTask::ProcessFinishedHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, const Value& commandLine, const ProcessResult& pr)
|
2014-03-12 10:05:36 +01:00
|
|
|
{
|
2019-08-14 17:43:06 +02:00
|
|
|
Checkable::CurrentConcurrentChecks.fetch_sub(1);
|
2016-05-12 13:46:22 +02:00
|
|
|
Checkable::DecreasePendingChecks();
|
|
|
|
|
2014-08-21 11:25:04 +02:00
|
|
|
if (pr.ExitStatus > 3) {
|
|
|
|
Process::Arguments parguments = Process::PrepareCommand(commandLine);
|
2014-10-19 17:52:17 +02:00
|
|
|
Log(LogWarning, "PluginCheckTask")
|
2017-12-19 15:50:05 +01:00
|
|
|
<< "Check command for object '" << checkable->GetName() << "' (PID: " << pr.PID
|
|
|
|
<< ", arguments: " << Process::PrettyPrintArguments(parguments) << ") terminated with exit code "
|
|
|
|
<< pr.ExitStatus << ", output: " << pr.Output;
|
2014-08-21 11:25:04 +02:00
|
|
|
}
|
|
|
|
|
2015-08-27 18:06:20 +02:00
|
|
|
String output = pr.Output.Trim();
|
|
|
|
|
2014-09-07 12:27:06 +02:00
|
|
|
std::pair<String, String> co = PluginUtility::ParseCheckOutput(output);
|
2014-04-26 13:16:08 +02:00
|
|
|
cr->SetCommand(commandLine);
|
2014-03-12 10:05:36 +01:00
|
|
|
cr->SetOutput(co.first);
|
2014-09-17 15:38:39 +02:00
|
|
|
cr->SetPerformanceData(PluginUtility::SplitPerfdata(co.second));
|
2014-03-12 10:05:36 +01:00
|
|
|
cr->SetState(PluginUtility::ExitStatusToState(pr.ExitStatus));
|
|
|
|
cr->SetExitStatus(pr.ExitStatus);
|
|
|
|
cr->SetExecutionStart(pr.ExecutionStart);
|
|
|
|
cr->SetExecutionEnd(pr.ExecutionEnd);
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
checkable->ProcessCheckResult(cr);
|
2013-01-22 12:05:36 +01:00
|
|
|
}
|