2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 12:06:41 +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 *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/icingaapplication.hpp"
|
2015-03-28 11:04:42 +01:00
|
|
|
#include "icinga/icingaapplication.tcpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/cib.hpp"
|
|
|
|
#include "base/dynamictype.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
#include "base/debug.hpp"
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include "base/timer.hpp"
|
2014-12-14 11:33:45 +01:00
|
|
|
#include "base/scriptglobal.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/initialize.hpp"
|
|
|
|
#include "base/statsfunction.hpp"
|
2012-03-31 16:29:53 +02:00
|
|
|
|
2012-12-04 08:42:24 +01:00
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-18 11:02:18 +01:00
|
|
|
static Timer::Ptr l_RetentionTimer;
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
REGISTER_TYPE(IcingaApplication);
|
2013-11-08 21:12:47 +01:00
|
|
|
INITIALIZE_ONCE(&IcingaApplication::StaticInitialize);
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2013-10-08 12:37:21 +02:00
|
|
|
void IcingaApplication::StaticInitialize(void)
|
2013-10-08 11:57:35 +02:00
|
|
|
{
|
2014-12-14 11:33:45 +01:00
|
|
|
ScriptGlobal::Set("EnableNotifications", true);
|
|
|
|
ScriptGlobal::Set("EnableEventHandlers", true);
|
|
|
|
ScriptGlobal::Set("EnableFlapping", true);
|
|
|
|
ScriptGlobal::Set("EnableHostChecks", true);
|
|
|
|
ScriptGlobal::Set("EnableServiceChecks", true);
|
|
|
|
ScriptGlobal::Set("EnablePerfdata", true);
|
2014-06-04 11:29:29 +02:00
|
|
|
|
|
|
|
String node_name = Utility::GetFQDN();
|
|
|
|
|
|
|
|
if (node_name.IsEmpty()) {
|
|
|
|
Log(LogNotice, "IcingaApplication", "No FQDN available. Trying Hostname.");
|
|
|
|
node_name = Utility::GetHostName();
|
|
|
|
|
|
|
|
if (node_name.IsEmpty()) {
|
|
|
|
Log(LogWarning, "IcingaApplication", "No FQDN nor Hostname available. Setting Nodename to 'localhost'.");
|
|
|
|
node_name = "localhost";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-14 11:33:45 +01:00
|
|
|
ScriptGlobal::Set("NodeName", node_name);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
2014-02-17 16:34:18 +01:00
|
|
|
REGISTER_STATSFUNCTION(IcingaApplicationStats, &IcingaApplication::StatsFunc);
|
|
|
|
|
2015-02-13 11:28:43 +01:00
|
|
|
void IcingaApplication::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)
|
2014-02-17 16:34:18 +01:00
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
Dictionary::Ptr nodes = new Dictionary();
|
2014-02-18 10:53:44 +01:00
|
|
|
|
2014-09-02 13:02:22 +02:00
|
|
|
BOOST_FOREACH(const IcingaApplication::Ptr& icingaapplication, DynamicType::GetObjectsByType<IcingaApplication>()) {
|
2014-11-08 21:17:16 +01:00
|
|
|
Dictionary::Ptr stats = new Dictionary();
|
2014-02-18 10:53:44 +01:00
|
|
|
stats->Set("node_name", icingaapplication->GetNodeName());
|
|
|
|
stats->Set("enable_notifications", icingaapplication->GetEnableNotifications());
|
|
|
|
stats->Set("enable_event_handlers", icingaapplication->GetEnableEventHandlers());
|
|
|
|
stats->Set("enable_flapping", icingaapplication->GetEnableFlapping());
|
2014-04-17 11:29:47 +02:00
|
|
|
stats->Set("enable_host_checks", icingaapplication->GetEnableHostChecks());
|
|
|
|
stats->Set("enable_service_checks", icingaapplication->GetEnableServiceChecks());
|
2014-02-18 10:53:44 +01:00
|
|
|
stats->Set("enable_perfdata", icingaapplication->GetEnablePerfdata());
|
|
|
|
stats->Set("pid", Utility::GetPid());
|
|
|
|
stats->Set("program_start", Application::GetStartTime());
|
|
|
|
stats->Set("version", Application::GetVersion());
|
|
|
|
|
|
|
|
nodes->Set(icingaapplication->GetName(), stats);
|
|
|
|
}
|
|
|
|
|
|
|
|
status->Set("icingaapplication", nodes);
|
2014-02-17 16:34:18 +01:00
|
|
|
}
|
|
|
|
|
2012-05-15 16:24:04 +02:00
|
|
|
/**
|
|
|
|
* The entry point for the Icinga application.
|
|
|
|
*
|
|
|
|
* @returns An exit status.
|
|
|
|
*/
|
2013-02-02 23:22:27 +01:00
|
|
|
int IcingaApplication::Main(void)
|
2012-03-31 16:29:53 +02:00
|
|
|
{
|
2014-05-28 13:45:45 +02:00
|
|
|
Log(LogDebug, "IcingaApplication", "In IcingaApplication::Main()");
|
2012-04-01 20:04:30 +02:00
|
|
|
|
2012-08-05 03:10:53 +02:00
|
|
|
/* periodically dump the program state */
|
2014-11-08 21:17:16 +01:00
|
|
|
l_RetentionTimer = new Timer();
|
2013-03-18 11:02:18 +01:00
|
|
|
l_RetentionTimer->SetInterval(300);
|
|
|
|
l_RetentionTimer->OnTimerExpired.connect(boost::bind(&IcingaApplication::DumpProgramState, this));
|
|
|
|
l_RetentionTimer->Start();
|
2012-08-05 03:10:53 +02:00
|
|
|
|
2012-03-31 16:29:53 +02:00
|
|
|
RunEventLoop();
|
|
|
|
|
2014-05-28 13:45:45 +02:00
|
|
|
Log(LogInformation, "IcingaApplication", "Icinga has shut down.");
|
2012-07-24 15:38:19 +02:00
|
|
|
|
2012-04-02 13:09:33 +02:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2013-02-24 01:10:34 +01:00
|
|
|
void IcingaApplication::OnShutdown(void)
|
|
|
|
{
|
2013-03-07 16:00:10 +01:00
|
|
|
ASSERT(!OwnsLock());
|
2013-03-02 09:07:47 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
2013-03-18 11:02:18 +01:00
|
|
|
l_RetentionTimer->Stop();
|
2013-03-02 09:07:47 +01:00
|
|
|
}
|
2013-02-24 01:10:34 +01:00
|
|
|
|
|
|
|
DumpProgramState();
|
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::DumpProgramState(void)
|
|
|
|
{
|
2012-08-07 14:17:36 +02:00
|
|
|
DynamicObject::DumpObjects(GetStatePath());
|
2012-07-24 13:13:02 +02:00
|
|
|
}
|
|
|
|
|
2012-06-27 18:43:34 +02:00
|
|
|
IcingaApplication::Ptr IcingaApplication::GetInstance(void)
|
|
|
|
{
|
|
|
|
return static_pointer_cast<IcingaApplication>(Application::GetInstance());
|
|
|
|
}
|
|
|
|
|
2014-04-03 10:30:11 +02:00
|
|
|
Dictionary::Ptr IcingaApplication::GetVars(void) const
|
2012-07-13 11:29:23 +02:00
|
|
|
{
|
2014-12-15 06:02:59 +01:00
|
|
|
return ScriptGlobal::Get("Vars", &Empty);
|
2012-07-13 11:29:23 +02:00
|
|
|
}
|
|
|
|
|
2014-02-07 09:48:15 +01:00
|
|
|
String IcingaApplication::GetNodeName(void) const
|
2014-02-06 15:27:50 +01:00
|
|
|
{
|
2014-12-14 11:33:45 +01:00
|
|
|
return ScriptGlobal::Get("NodeName");
|
2014-02-06 15:27:50 +01:00
|
|
|
}
|
|
|
|
|
2014-11-26 20:43:42 +01:00
|
|
|
bool IcingaApplication::ResolveMacro(const String& macro, const CheckResult::Ptr&, Value *result) const
|
2013-02-24 01:10:34 +01:00
|
|
|
{
|
2014-04-08 13:23:24 +02:00
|
|
|
double now = Utility::GetTime();
|
|
|
|
|
|
|
|
if (macro == "timet") {
|
|
|
|
*result = Convert::ToString((long)now);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "long_date_time") {
|
|
|
|
*result = Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", now);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "short_date_time") {
|
|
|
|
*result = Utility::FormatDateTime("%Y-%m-%d %H:%M:%S", now);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "date") {
|
|
|
|
*result = Utility::FormatDateTime("%Y-%m-%d", now);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "time") {
|
|
|
|
*result = Utility::FormatDateTime("%H:%M:%S %z", now);
|
|
|
|
return true;
|
2014-05-03 02:06:58 +02:00
|
|
|
} else if (macro == "uptime") {
|
|
|
|
*result = Utility::FormatDuration(Utility::GetTime() - Application::GetStartTime());
|
|
|
|
return true;
|
2014-04-05 09:19:42 +02:00
|
|
|
}
|
2014-04-04 20:09:23 +02:00
|
|
|
|
2014-04-05 09:19:42 +02:00
|
|
|
Dictionary::Ptr vars = GetVars();
|
|
|
|
|
|
|
|
if (vars && vars->Contains(macro)) {
|
|
|
|
*result = vars->Get(macro);
|
|
|
|
return true;
|
2013-03-22 14:40:55 +01:00
|
|
|
}
|
2013-02-24 01:10:34 +01:00
|
|
|
|
2014-05-03 02:06:58 +02:00
|
|
|
if (macro.Contains("num_services")) {
|
|
|
|
ServiceStatistics ss = CIB::CalculateServiceStats();
|
|
|
|
|
|
|
|
if (macro == "num_services_ok") {
|
|
|
|
*result = Convert::ToString(ss.services_ok);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_services_warning") {
|
|
|
|
*result = Convert::ToString(ss.services_warning);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_services_critical") {
|
|
|
|
*result = Convert::ToString(ss.services_critical);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_services_unknown") {
|
|
|
|
*result = Convert::ToString(ss.services_unknown);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_services_pending") {
|
|
|
|
*result = Convert::ToString(ss.services_pending);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_services_unreachable") {
|
|
|
|
*result = Convert::ToString(ss.services_unreachable);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_services_flapping") {
|
|
|
|
*result = Convert::ToString(ss.services_flapping);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_services_in_downtime") {
|
|
|
|
*result = Convert::ToString(ss.services_in_downtime);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_services_acknowledged") {
|
|
|
|
*result = Convert::ToString(ss.services_acknowledged);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (macro.Contains("num_hosts")) {
|
|
|
|
HostStatistics hs = CIB::CalculateHostStats();
|
|
|
|
|
|
|
|
if (macro == "num_hosts_up") {
|
|
|
|
*result = Convert::ToString(hs.hosts_up);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_hosts_down") {
|
|
|
|
*result = Convert::ToString(hs.hosts_down);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_hosts_unreachable") {
|
|
|
|
*result = Convert::ToString(hs.hosts_unreachable);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_hosts_flapping") {
|
|
|
|
*result = Convert::ToString(hs.hosts_flapping);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_hosts_in_downtime") {
|
|
|
|
*result = Convert::ToString(hs.hosts_in_downtime);
|
|
|
|
return true;
|
|
|
|
} else if (macro == "num_hosts_acknowledged") {
|
|
|
|
*result = Convert::ToString(hs.hosts_acknowledged);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 14:40:55 +01:00
|
|
|
return false;
|
2013-02-24 01:10:34 +01:00
|
|
|
}
|
2013-10-08 11:57:35 +02:00
|
|
|
|
|
|
|
bool IcingaApplication::GetEnableNotifications(void) const
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
if (!GetOverrideEnableNotifications().IsEmpty())
|
|
|
|
return GetOverrideEnableNotifications();
|
2013-10-08 11:57:35 +02:00
|
|
|
else
|
2014-12-14 11:33:45 +01:00
|
|
|
return ScriptGlobal::Get("EnableNotifications");
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::SetEnableNotifications(bool enabled)
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
SetOverrideEnableNotifications(enabled);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::ClearEnableNotifications(void)
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
SetOverrideEnableNotifications(Empty);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IcingaApplication::GetEnableEventHandlers(void) const
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
if (!GetOverrideEnableEventHandlers().IsEmpty())
|
|
|
|
return GetOverrideEnableEventHandlers();
|
2013-10-08 11:57:35 +02:00
|
|
|
else
|
2014-12-14 11:33:45 +01:00
|
|
|
return ScriptGlobal::Get("EnableEventHandlers");
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::SetEnableEventHandlers(bool enabled)
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
SetOverrideEnableEventHandlers(enabled);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::ClearEnableEventHandlers(void)
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
SetOverrideEnableEventHandlers(Empty);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IcingaApplication::GetEnableFlapping(void) const
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
if (!GetOverrideEnableFlapping().IsEmpty())
|
|
|
|
return GetOverrideEnableFlapping();
|
2013-10-08 11:57:35 +02:00
|
|
|
else
|
2014-12-14 11:33:45 +01:00
|
|
|
return ScriptGlobal::Get("EnableFlapping");
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::SetEnableFlapping(bool enabled)
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
SetOverrideEnableFlapping(enabled);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::ClearEnableFlapping(void)
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
SetOverrideEnableFlapping(Empty);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
2014-04-17 11:29:47 +02:00
|
|
|
bool IcingaApplication::GetEnableHostChecks(void) const
|
2013-10-08 11:57:35 +02:00
|
|
|
{
|
2014-04-17 11:29:47 +02:00
|
|
|
if (!GetOverrideEnableHostChecks().IsEmpty())
|
|
|
|
return GetOverrideEnableHostChecks();
|
2013-10-08 11:57:35 +02:00
|
|
|
else
|
2014-12-14 11:33:45 +01:00
|
|
|
return ScriptGlobal::Get("EnableHostChecks");
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
2014-04-17 11:29:47 +02:00
|
|
|
void IcingaApplication::SetEnableHostChecks(bool enabled)
|
2013-10-08 11:57:35 +02:00
|
|
|
{
|
2014-04-17 11:29:47 +02:00
|
|
|
SetOverrideEnableHostChecks(enabled);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
2014-04-17 11:29:47 +02:00
|
|
|
void IcingaApplication::ClearEnableHostChecks(void)
|
2013-10-08 11:57:35 +02:00
|
|
|
{
|
2014-04-17 11:29:47 +02:00
|
|
|
SetOverrideEnableHostChecks(Empty);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IcingaApplication::GetEnableServiceChecks(void) const
|
|
|
|
{
|
|
|
|
if (!GetOverrideEnableServiceChecks().IsEmpty())
|
|
|
|
return GetOverrideEnableServiceChecks();
|
|
|
|
else
|
2014-12-14 11:33:45 +01:00
|
|
|
return ScriptGlobal::Get("EnableServiceChecks");
|
2014-04-17 11:29:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::SetEnableServiceChecks(bool enabled)
|
|
|
|
{
|
|
|
|
SetOverrideEnableServiceChecks(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::ClearEnableServiceChecks(void)
|
|
|
|
{
|
|
|
|
SetOverrideEnableServiceChecks(Empty);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IcingaApplication::GetEnablePerfdata(void) const
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
if (!GetOverrideEnablePerfdata().IsEmpty())
|
|
|
|
return GetOverrideEnablePerfdata();
|
2013-10-08 11:57:35 +02:00
|
|
|
else
|
2014-12-14 11:33:45 +01:00
|
|
|
return ScriptGlobal::Get("EnablePerfdata");
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::SetEnablePerfdata(bool enabled)
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
SetOverrideEnablePerfdata(enabled);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IcingaApplication::ClearEnablePerfdata(void)
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
SetOverrideEnablePerfdata(Empty);
|
2013-10-08 11:57:35 +02:00
|
|
|
}
|