2013-10-23 05:23:48 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2018-01-02 06:06:00 -05:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
2013-10-23 05:23:48 -04: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 01:38:29 -04:00
|
|
|
# include <stdlib.h>
|
|
|
|
|
#endif /* _WIN32 */
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "methods/randomchecktask.hpp"
|
2015-12-10 09:27:49 -05:00
|
|
|
#include "icinga/icingaapplication.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/utility.hpp"
|
2017-05-15 09:51:39 -04:00
|
|
|
#include "base/perfdatavalue.hpp"
|
2015-01-21 02:47:45 -05:00
|
|
|
#include "base/function.hpp"
|
2014-10-19 08:21:12 -04:00
|
|
|
#include "base/logger.hpp"
|
2013-10-23 05:23:48 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2018-08-07 07:55:41 -04:00
|
|
|
REGISTER_FUNCTION_NONCONST(Internal, RandomCheck, &RandomCheckTask::ScriptFunc, "checkable:cr:resolvedMacros:useResolvedMacros");
|
2013-10-23 05:23:48 -04:00
|
|
|
|
2018-01-30 05:26:07 -05:00
|
|
|
void RandomCheckTask::ScriptFunc(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr,
|
2017-12-19 09:50:05 -05:00
|
|
|
const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros)
|
2013-10-23 05:23:48 -04:00
|
|
|
{
|
2018-02-21 07:42:58 -05:00
|
|
|
REQUIRE_NOT_NULL(checkable);
|
|
|
|
|
REQUIRE_NOT_NULL(cr);
|
2018-01-30 05:26:07 -05:00
|
|
|
|
2014-12-01 07:19:07 -05:00
|
|
|
if (resolvedMacros && !useResolvedMacros)
|
|
|
|
|
return;
|
|
|
|
|
|
2018-02-06 09:56:07 -05: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 08:38:37 -05:00
|
|
|
|
2013-11-09 08:22:38 -05:00
|
|
|
cr->SetOutput(output);
|
2018-02-06 09:56:07 -05:00
|
|
|
|
|
|
|
|
double random = Utility::Random() % 1000;
|
|
|
|
|
|
2018-01-11 05:17:38 -05:00
|
|
|
cr->SetPerformanceData(new Array({
|
2018-02-06 09:56:07 -05: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 05:17:38 -05:00
|
|
|
}));
|
2018-02-06 09:56:07 -05:00
|
|
|
|
2013-11-09 08:22:38 -05:00
|
|
|
cr->SetState(static_cast<ServiceState>(Utility::Random() % 4));
|
2013-10-23 05:23:48 -04:00
|
|
|
|
2018-01-30 05:26:07 -05:00
|
|
|
checkable->ProcessCheckResult(cr);
|
2013-10-23 05:23:48 -04:00
|
|
|
}
|