2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-06-13 05:33:00 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "methods/plugineventtask.hpp"
|
|
|
|
|
#include "icinga/eventcommand.hpp"
|
|
|
|
|
#include "icinga/macroprocessor.hpp"
|
|
|
|
|
#include "icinga/pluginutility.hpp"
|
|
|
|
|
#include "icinga/icingaapplication.hpp"
|
2015-08-15 14:28:05 -04:00
|
|
|
#include "base/configtype.hpp"
|
2014-10-19 08:21:12 -04:00
|
|
|
#include "base/logger.hpp"
|
2015-01-21 02:47:45 -05:00
|
|
|
#include "base/function.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/utility.hpp"
|
|
|
|
|
#include "base/process.hpp"
|
2014-08-21 05:25:04 -04:00
|
|
|
#include "base/convert.hpp"
|
2013-06-13 05:33:00 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2018-08-07 07:55:41 -04:00
|
|
|
REGISTER_FUNCTION_NONCONST(Internal, PluginEvent, &PluginEventTask::ScriptFunc, "checkable:resolvedMacros:useResolvedMacros");
|
2013-06-13 05:33:00 -04:00
|
|
|
|
2014-11-13 05:23:57 -05:00
|
|
|
void PluginEventTask::ScriptFunc(const Checkable::Ptr& checkable,
|
2017-12-19 09:50:05 -05:00
|
|
|
const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros)
|
2013-06-13 05:33:00 -04:00
|
|
|
{
|
2018-02-21 07:42:58 -05:00
|
|
|
REQUIRE_NOT_NULL(checkable);
|
2018-01-30 05:26:07 -05:00
|
|
|
|
2020-08-03 02:07:32 -04:00
|
|
|
EventCommand::Ptr commandObj = EventCommand::ExecuteOverride ? EventCommand::ExecuteOverride : checkable->GetEventCommand();
|
2013-06-13 05:33:00 -04:00
|
|
|
|
2014-04-03 09:36:13 -04:00
|
|
|
Host::Ptr host;
|
|
|
|
|
Service::Ptr service;
|
2014-04-07 16:06:05 -04:00
|
|
|
tie(host, service) = GetHostService(checkable);
|
2014-04-03 09:36:13 -04:00
|
|
|
|
2014-04-08 07:23:24 -04:00
|
|
|
MacroProcessor::ResolverList resolvers;
|
2020-11-23 10:39:24 -05:00
|
|
|
|
2020-07-31 08:21:09 -04:00
|
|
|
if (MacroResolver::OverrideMacros)
|
|
|
|
|
resolvers.emplace_back("override", MacroResolver::OverrideMacros);
|
|
|
|
|
|
2014-04-07 16:06:05 -04:00
|
|
|
if (service)
|
2017-11-30 02:19:58 -05:00
|
|
|
resolvers.emplace_back("service", service);
|
|
|
|
|
resolvers.emplace_back("host", host);
|
|
|
|
|
resolvers.emplace_back("command", commandObj);
|
|
|
|
|
resolvers.emplace_back("icinga", IcingaApplication::GetInstance());
|
2013-06-13 05:33:00 -04:00
|
|
|
|
2018-09-28 08:32:57 -04:00
|
|
|
int timeout = commandObj->GetTimeout();
|
2020-07-15 03:14:01 -04:00
|
|
|
std::function<void(const Value& commandLine, const ProcessResult&)> callback;
|
2020-11-23 10:39:24 -05:00
|
|
|
|
2020-07-15 03:14:01 -04:00
|
|
|
if (Checkable::ExecuteCommandProcessFinishedHandler) {
|
|
|
|
|
callback = Checkable::ExecuteCommandProcessFinishedHandler;
|
|
|
|
|
} else {
|
2021-01-18 08:29:05 -05:00
|
|
|
callback = [checkable](const Value& commandLine, const ProcessResult& pr) { ProcessFinishedHandler(checkable, commandLine, pr); };
|
2020-07-15 03:14:01 -04:00
|
|
|
}
|
2020-11-23 10:39:24 -05:00
|
|
|
|
2014-11-13 05:23:57 -05:00
|
|
|
PluginUtility::ExecuteCommand(commandObj, checkable, checkable->GetLastCheckResult(),
|
2020-07-15 03:14:01 -04:00
|
|
|
resolvers, resolvedMacros, useResolvedMacros, timeout, callback);
|
2014-08-06 11:49:29 -04:00
|
|
|
}
|
|
|
|
|
|
2014-08-21 05:25:04 -04:00
|
|
|
void PluginEventTask::ProcessFinishedHandler(const Checkable::Ptr& checkable, const Value& commandLine, const ProcessResult& pr)
|
2014-08-06 11:49:29 -04:00
|
|
|
{
|
|
|
|
|
if (pr.ExitStatus != 0) {
|
2014-08-21 05:25:04 -04:00
|
|
|
Process::Arguments parguments = Process::PrepareCommand(commandLine);
|
2018-05-11 09:24:37 -04:00
|
|
|
Log(LogWarning, "PluginEventTask")
|
2017-12-19 09:50:05 -05: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 11:49:29 -04:00
|
|
|
}
|
2013-06-13 05:33:00 -04:00
|
|
|
}
|