2013-10-23 11:23:48 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-01-02 12:06:00 +01:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
2013-10-23 11:23:48 +02:00
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#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/randomchecktask.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"
|
2015-01-21 08:47:45 +01:00
|
|
|
#include "base/function.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2013-10-23 11:23:48 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-08-07 13:55:41 +02:00
|
|
|
REGISTER_FUNCTION_NONCONST(Internal, RandomCheck, &RandomCheckTask::ScriptFunc, "checkable:cr:resolvedMacros:useResolvedMacros");
|
2013-10-23 11:23:48 +02:00
|
|
|
|
2018-01-30 11:26:07 +01:00
|
|
|
void RandomCheckTask::ScriptFunc(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros)
|
2013-10-23 11:23:48 +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;
|
|
|
|
|
2018-02-06 15:56:07 +01:00
|
|
|
double now = Utility::GetTime();
|
|
|
|
double uptime = now - Application::GetStartTime();
|
|
|
|
|
|
|
|
String output = "Hello from " + IcingaApplication::GetInstance()->GetNodeName()
|
|
|
|
+ ". Icinga 2 has been running for " + Utility::FormatDuration(uptime)
|
|
|
|
+ ". Version: " + Application::GetAppVersion();
|
2013-11-07 14:38:37 +01:00
|
|
|
|
2013-11-09 14:22:38 +01:00
|
|
|
cr->SetOutput(output);
|
2018-02-06 15:56:07 +01:00
|
|
|
|
|
|
|
double random = Utility::Random() % 1000;
|
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
cr->SetPerformanceData(new Array({
|
2018-02-06 15:56:07 +01:00
|
|
|
new PerfdataValue("time", now),
|
|
|
|
new PerfdataValue("value", random),
|
|
|
|
new PerfdataValue("value_1m", random * 0.9),
|
|
|
|
new PerfdataValue("value_5m", random * 0.8),
|
|
|
|
new PerfdataValue("uptime", uptime),
|
2018-01-11 11:17:38 +01:00
|
|
|
}));
|
2018-02-06 15:56:07 +01:00
|
|
|
|
2013-11-09 14:22:38 +01:00
|
|
|
cr->SetState(static_cast<ServiceState>(Utility::Random() % 4));
|
2013-10-23 11:23:48 +02:00
|
|
|
|
2018-01-30 11:26:07 +01:00
|
|
|
checkable->ProcessCheckResult(cr);
|
2013-10-23 11:23:48 +02:00
|
|
|
}
|