2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-06-13 11:33:00 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "methods/plugineventtask.hpp"
|
|
|
|
#include "icinga/eventcommand.hpp"
|
|
|
|
#include "icinga/macroprocessor.hpp"
|
|
|
|
#include "icinga/pluginutility.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"
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-08-07 13:55:41 +02:00
|
|
|
REGISTER_FUNCTION_NONCONST(Internal, PluginEvent, &PluginEventTask::ScriptFunc, "checkable:resolvedMacros:useResolvedMacros");
|
2013-06-13 11:33:00 +02:00
|
|
|
|
2014-11-13 11:23:57 +01:00
|
|
|
void PluginEventTask::ScriptFunc(const Checkable::Ptr& checkable,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros)
|
2013-06-13 11:33:00 +02:00
|
|
|
{
|
2018-02-21 13:42:58 +01:00
|
|
|
REQUIRE_NOT_NULL(checkable);
|
2018-01-30 11:26:07 +01:00
|
|
|
|
2020-08-03 08:07:32 +02:00
|
|
|
EventCommand::Ptr commandObj = EventCommand::ExecuteOverride ? EventCommand::ExecuteOverride : checkable->GetEventCommand();
|
2013-06-13 11:33:00 +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;
|
2020-11-23 16:39:24 +01:00
|
|
|
|
2020-07-31 14:21:09 +02:00
|
|
|
if (MacroResolver::OverrideMacros)
|
|
|
|
resolvers.emplace_back("override", MacroResolver::OverrideMacros);
|
|
|
|
|
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);
|
2013-06-13 11:33:00 +02:00
|
|
|
|
2018-09-28 14:32:57 +02:00
|
|
|
int timeout = commandObj->GetTimeout();
|
2020-07-15 09:14:01 +02:00
|
|
|
std::function<void(const Value& commandLine, const ProcessResult&)> callback;
|
2020-11-23 16:39:24 +01:00
|
|
|
|
2020-07-15 09:14:01 +02:00
|
|
|
if (Checkable::ExecuteCommandProcessFinishedHandler) {
|
|
|
|
callback = Checkable::ExecuteCommandProcessFinishedHandler;
|
|
|
|
} else {
|
2021-01-18 14:29:05 +01:00
|
|
|
callback = [checkable](const Value& commandLine, const ProcessResult& pr) { ProcessFinishedHandler(checkable, commandLine, pr); };
|
2020-07-15 09:14:01 +02:00
|
|
|
}
|
2020-11-23 16:39:24 +01:00
|
|
|
|
2014-11-13 11:23:57 +01:00
|
|
|
PluginUtility::ExecuteCommand(commandObj, checkable, checkable->GetLastCheckResult(),
|
2020-07-15 09:14:01 +02:00
|
|
|
resolvers, resolvedMacros, useResolvedMacros, timeout, callback);
|
2014-08-06 17:49:29 +02:00
|
|
|
}
|
|
|
|
|
2014-08-21 11:25:04 +02:00
|
|
|
void PluginEventTask::ProcessFinishedHandler(const Checkable::Ptr& checkable, const Value& commandLine, const ProcessResult& pr)
|
2014-08-06 17:49:29 +02:00
|
|
|
{
|
|
|
|
if (pr.ExitStatus != 0) {
|
2014-08-21 11:25:04 +02:00
|
|
|
Process::Arguments parguments = Process::PrepareCommand(commandLine);
|
2018-05-11 15:24:37 +02:00
|
|
|
Log(LogWarning, "PluginEventTask")
|
2017-12-19 15:50:05 +01:00
|
|
|
<< "Event command for object '" << checkable->GetName() << "' (PID: " << pr.PID
|
|
|
|
<< ", arguments: " << Process::PrettyPrintArguments(parguments) << ") terminated with exit code "
|
|
|
|
<< pr.ExitStatus << ", output: " << pr.Output;
|
2014-08-06 17:49:29 +02:00
|
|
|
}
|
2013-06-13 11:33:00 +02:00
|
|
|
}
|