2012-07-16 15:10:42 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-01-09 00:32:11 +01:00
|
|
|
* Copyright (C) 2012-present Icinga Development Team (http://www.icinga.org) *
|
2012-07-16 15:10:42 +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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-10-03 20:33:32 +02:00
|
|
|
#ifndef _WIN32
|
2013-10-24 07:38:29 +02:00
|
|
|
# include <stdlib.h>
|
|
|
|
#endif /* _WIN32 */
|
2013-11-04 14:41:24 +01:00
|
|
|
#include "methods/nullchecktask.h"
|
2013-10-03 20:33:32 +02:00
|
|
|
#include "base/utility.h"
|
2013-10-14 22:48:29 +02:00
|
|
|
#include "base/convert.h"
|
2013-03-25 18:36:15 +01:00
|
|
|
#include "base/scriptfunction.h"
|
2013-06-13 11:33:00 +02:00
|
|
|
#include "base/logger_fwd.h"
|
2012-07-16 15:10:42 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
REGISTER_SCRIPTFUNCTION(NullCheck, &NullCheckTask::ScriptFunc);
|
2013-01-22 09:21:50 +01:00
|
|
|
|
2013-11-09 14:22:38 +01:00
|
|
|
CheckResult::Ptr NullCheckTask::ScriptFunc(const Service::Ptr&)
|
2012-07-16 15:10:42 +02:00
|
|
|
{
|
2013-09-12 10:36:50 +02:00
|
|
|
String output = "Hello from ";
|
2014-02-07 09:48:15 +01:00
|
|
|
output += Utility::GetHostName();
|
2013-11-07 14:38:37 +01:00
|
|
|
|
|
|
|
Dictionary::Ptr perfdata = make_shared<Dictionary>();
|
|
|
|
perfdata->Set("time", Utility::GetTime());
|
2013-09-12 10:36:50 +02:00
|
|
|
|
2013-11-09 14:22:38 +01:00
|
|
|
CheckResult::Ptr cr = make_shared<CheckResult>();
|
|
|
|
cr->SetOutput(output);
|
|
|
|
cr->SetPerformanceData(perfdata);
|
|
|
|
cr->SetState(StateOK);
|
2012-07-16 15:10:42 +02:00
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
return cr;
|
2012-07-16 15:10:42 +02:00
|
|
|
}
|
2013-10-03 20:33:32 +02:00
|
|
|
|