2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-07-16 15:10:42 +02:00
|
|
|
|
2013-10-03 20:33:32 +02:00
|
|
|
#ifndef _WIN32
|
2013-10-24 07:38:29 +02:00
|
|
|
# include <stdlib.h>
|
|
|
|
#endif /* _WIN32 */
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "methods/nullchecktask.hpp"
|
2015-12-10 15:27:49 +01:00
|
|
|
#include "icinga/icingaapplication.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/utility.hpp"
|
2017-05-15 15:51:39 +02:00
|
|
|
#include "base/perfdatavalue.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/convert.hpp"
|
2015-01-21 08:47:45 +01:00
|
|
|
#include "base/function.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2012-07-16 15:10:42 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-08-07 13:55:41 +02:00
|
|
|
REGISTER_FUNCTION_NONCONST(Internal, NullCheck, &NullCheckTask::ScriptFunc, "checkable:cr:resolvedMacros:useResolvedMacros");
|
2013-01-22 09:21:50 +01:00
|
|
|
|
2018-01-30 11:26:07 +01:00
|
|
|
void NullCheckTask::ScriptFunc(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros)
|
2012-07-16 15:10:42 +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-12-01 13:19:07 +01:00
|
|
|
if (resolvedMacros && !useResolvedMacros)
|
|
|
|
return;
|
|
|
|
|
2013-09-12 10:36:50 +02:00
|
|
|
String output = "Hello from ";
|
2015-12-10 15:27:49 +01:00
|
|
|
output += IcingaApplication::GetInstance()->GetNodeName();
|
2020-07-20 16:29:26 +02:00
|
|
|
ServiceState state = ServiceOK;
|
|
|
|
|
|
|
|
if (Checkable::ExecuteCommandProcessFinishedHandler) {
|
|
|
|
double now = Utility::GetTime();
|
|
|
|
ProcessResult pr;
|
|
|
|
pr.PID = -1;
|
|
|
|
pr.Output = output;
|
|
|
|
pr.ExecutionStart = now;
|
|
|
|
pr.ExecutionEnd = now;
|
|
|
|
pr.ExitStatus = state;
|
|
|
|
|
|
|
|
Checkable::ExecuteCommandProcessFinishedHandler("", pr);
|
|
|
|
} else {
|
|
|
|
cr->SetOutput(output);
|
|
|
|
cr->SetPerformanceData(new Array({
|
|
|
|
new PerfdataValue("time", Convert::ToDouble(Utility::GetTime()))
|
|
|
|
}));
|
|
|
|
cr->SetState(state);
|
|
|
|
|
|
|
|
checkable->ProcessCheckResult(cr);
|
|
|
|
}
|
2012-07-16 15:10:42 +02:00
|
|
|
}
|