2012-06-14 05:23:25 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2014-03-18 20:02:29 -04:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-06-14 05:23:25 -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. *
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "checker/checkercomponent.hpp"
|
|
|
|
|
#include "icinga/icingaapplication.hpp"
|
|
|
|
|
#include "icinga/cib.hpp"
|
|
|
|
|
#include "remote/apilistener.hpp"
|
|
|
|
|
#include "base/dynamictype.hpp"
|
|
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
|
#include "base/logger_fwd.hpp"
|
|
|
|
|
#include "base/exception.hpp"
|
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
|
#include "base/statsfunction.hpp"
|
2013-08-20 05:06:04 -04:00
|
|
|
#include <boost/foreach.hpp>
|
2012-06-14 05:23:25 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2013-03-12 08:45:54 -04:00
|
|
|
REGISTER_TYPE(CheckerComponent);
|
2014-02-18 04:53:44 -05:00
|
|
|
|
2014-02-17 10:34:18 -05:00
|
|
|
REGISTER_STATSFUNCTION(CheckerComponentStats, &CheckerComponent::StatsFunc);
|
|
|
|
|
|
|
|
|
|
Value CheckerComponent::StatsFunc(Dictionary::Ptr& status, Dictionary::Ptr& perfdata)
|
|
|
|
|
{
|
2014-02-18 04:53:44 -05:00
|
|
|
Dictionary::Ptr nodes = make_shared<Dictionary>();
|
|
|
|
|
|
|
|
|
|
BOOST_FOREACH(const CheckerComponent::Ptr& checker, DynamicType::GetObjects<CheckerComponent>()) {
|
2014-04-03 09:36:13 -04:00
|
|
|
unsigned long idle = checker->GetIdleCheckables();
|
|
|
|
|
unsigned long pending = checker->GetPendingCheckables();
|
2014-02-18 04:53:44 -05:00
|
|
|
|
|
|
|
|
Dictionary::Ptr stats = make_shared<Dictionary>();
|
|
|
|
|
stats->Set("idle", idle);
|
|
|
|
|
stats->Set("pending", pending);
|
|
|
|
|
|
|
|
|
|
nodes->Set(checker->GetName(), stats);
|
|
|
|
|
|
|
|
|
|
String perfdata_prefix = "checkercomponent_" + checker->GetName() + "_";
|
2014-03-10 13:01:26 -04:00
|
|
|
perfdata->Set(perfdata_prefix + "idle", Convert::ToDouble(idle));
|
|
|
|
|
perfdata->Set(perfdata_prefix + "pending", Convert::ToDouble(pending));
|
2014-02-18 04:53:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
status->Set("checkercomponent", nodes);
|
2014-02-17 10:34:18 -05:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2013-03-12 08:45:54 -04:00
|
|
|
|
2013-11-28 14:56:21 -05:00
|
|
|
void CheckerComponent::OnConfigLoaded(void)
|
2012-06-14 05:23:25 -04:00
|
|
|
{
|
2013-09-13 01:49:12 -04:00
|
|
|
DynamicObject::OnStarted.connect(bind(&CheckerComponent::ObjectHandler, this, _1));
|
|
|
|
|
DynamicObject::OnStopped.connect(bind(&CheckerComponent::ObjectHandler, this, _1));
|
2014-05-09 05:32:24 -04:00
|
|
|
DynamicObject::OnPaused.connect(bind(&CheckerComponent::ObjectHandler, this, _1));
|
|
|
|
|
DynamicObject::OnResumed.connect(bind(&CheckerComponent::ObjectHandler, this, _1));
|
2012-08-14 04:53:04 -04:00
|
|
|
|
2014-04-03 09:36:13 -04:00
|
|
|
Checkable::OnNextCheckChanged.connect(bind(&CheckerComponent::NextCheckChangedHandler, this, _1));
|
2013-11-28 14:56:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckerComponent::Start(void)
|
|
|
|
|
{
|
|
|
|
|
DynamicObject::Start();
|
2012-08-03 17:03:58 -04:00
|
|
|
|
2013-02-19 17:02:08 -05:00
|
|
|
m_Stopped = false;
|
|
|
|
|
|
2013-03-15 13:21:29 -04:00
|
|
|
m_Thread = boost::thread(boost::bind(&CheckerComponent::CheckThreadProc, this));
|
2012-06-14 05:23:25 -04:00
|
|
|
|
2013-11-06 02:51:56 -05:00
|
|
|
m_ResultTimer = make_shared<Timer>();
|
2012-06-17 17:10:03 -04:00
|
|
|
m_ResultTimer->SetInterval(5);
|
2012-06-17 14:35:56 -04:00
|
|
|
m_ResultTimer->OnTimerExpired.connect(boost::bind(&CheckerComponent::ResultTimerHandler, this));
|
|
|
|
|
m_ResultTimer->Start();
|
2012-06-14 05:23:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckerComponent::Stop(void)
|
|
|
|
|
{
|
2014-05-28 07:03:44 -04:00
|
|
|
Log(LogInformation, "CheckerComponent", "Checker stopped.");
|
2014-03-17 04:04:19 -04:00
|
|
|
|
2013-02-19 17:02:08 -05:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
|
|
|
|
m_Stopped = true;
|
|
|
|
|
m_CV.notify_all();
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-17 04:04:19 -04:00
|
|
|
m_ResultTimer->Stop();
|
2013-02-19 17:02:08 -05:00
|
|
|
m_Thread.join();
|
2014-04-16 09:01:31 -04:00
|
|
|
|
|
|
|
|
DynamicObject::Stop();
|
2012-06-14 05:23:25 -04:00
|
|
|
}
|
|
|
|
|
|
2013-02-18 08:40:24 -05:00
|
|
|
void CheckerComponent::CheckThreadProc(void)
|
2012-06-14 05:23:25 -04:00
|
|
|
{
|
2013-08-30 04:19:32 -04:00
|
|
|
Utility::SetThreadName("Check Scheduler");
|
|
|
|
|
|
2013-02-23 19:10:34 -05:00
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
2013-02-17 13:14:34 -05:00
|
|
|
|
2013-02-23 19:10:34 -05:00
|
|
|
for (;;) {
|
2014-04-03 09:36:13 -04:00
|
|
|
typedef boost::multi_index::nth_index<CheckableSet, 1>::type CheckTimeView;
|
|
|
|
|
CheckTimeView& idx = boost::get<1>(m_IdleCheckables);
|
2013-02-17 13:14:34 -05:00
|
|
|
|
2013-02-21 10:12:50 -05:00
|
|
|
while (idx.begin() == idx.end() && !m_Stopped)
|
|
|
|
|
m_CV.wait(lock);
|
2012-08-04 07:49:25 -04:00
|
|
|
|
2013-02-21 10:12:50 -05:00
|
|
|
if (m_Stopped)
|
|
|
|
|
break;
|
2013-02-19 17:02:08 -05:00
|
|
|
|
2013-02-21 10:12:50 -05:00
|
|
|
CheckTimeView::iterator it = idx.begin();
|
2014-04-05 13:02:45 -04:00
|
|
|
Checkable::Ptr checkable = *it;
|
2013-02-17 13:14:34 -05:00
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
double wait = checkable->GetNextCheck() - Utility::GetTime();
|
2013-02-11 07:05:08 -05:00
|
|
|
|
2013-02-18 08:40:24 -05:00
|
|
|
if (wait > 0) {
|
|
|
|
|
/* Wait for the next check. */
|
2013-10-18 07:46:22 -04:00
|
|
|
m_CV.timed_wait(lock, boost::posix_time::milliseconds(wait * 1000));
|
2013-02-18 08:40:24 -05:00
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
m_IdleCheckables.erase(checkable);
|
2012-06-17 16:46:40 -04:00
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
bool forced = checkable->GetForceNextCheck();
|
2013-03-13 11:04:53 -04:00
|
|
|
bool check = true;
|
2013-09-12 04:03:48 -04:00
|
|
|
|
2013-09-10 03:26:46 -04:00
|
|
|
if (!forced) {
|
2014-04-05 13:02:45 -04:00
|
|
|
if (!checkable->IsReachable(DependencyCheckExecution)) {
|
2014-05-28 07:03:44 -04:00
|
|
|
Log(LogNotice, "CheckerComponent", "Skipping check for object '" + checkable->GetName() + "': Dependency failed.");
|
2014-02-27 05:05:55 -05:00
|
|
|
check = false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-17 05:29:47 -04:00
|
|
|
Host::Ptr host;
|
|
|
|
|
Service::Ptr service;
|
|
|
|
|
tie(host, service) = GetHostService(checkable);
|
|
|
|
|
|
2014-05-01 15:57:58 -04:00
|
|
|
if (host && !service && (!checkable->GetEnableActiveChecks() || !IcingaApplication::GetInstance()->GetEnableHostChecks())) {
|
2014-05-28 07:03:44 -04:00
|
|
|
Log(LogNotice, "CheckerComponent", "Skipping check for host '" + host->GetName() + "': active host checks are disabled");
|
2014-04-17 05:29:47 -04:00
|
|
|
check = false;
|
|
|
|
|
}
|
2014-05-01 15:57:58 -04:00
|
|
|
if (host && service && (!checkable->GetEnableActiveChecks() || !IcingaApplication::GetInstance()->GetEnableServiceChecks())) {
|
2014-05-28 07:03:44 -04:00
|
|
|
Log(LogNotice, "CheckerComponent", "Skipping check for service '" + service->GetName() + "': active service checks are disabled");
|
2013-03-13 11:04:53 -04:00
|
|
|
check = false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
TimePeriod::Ptr tp = checkable->GetCheckPeriod();
|
2013-03-13 11:04:53 -04:00
|
|
|
|
|
|
|
|
if (tp && !tp->IsInside(Utility::GetTime())) {
|
2014-05-28 07:03:44 -04:00
|
|
|
Log(LogNotice, "CheckerComponent", "Skipping check for object '" + checkable->GetName() + "': not in check_period");
|
2013-03-13 11:04:53 -04:00
|
|
|
check = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
/* reschedule the checkable if checks are disabled */
|
2013-03-13 11:04:53 -04:00
|
|
|
if (!check) {
|
2014-04-05 13:02:45 -04:00
|
|
|
m_IdleCheckables.insert(checkable);
|
2013-11-28 14:55:10 -05:00
|
|
|
lock.unlock();
|
|
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
checkable->UpdateNextCheck();
|
2013-01-22 10:01:08 -05:00
|
|
|
|
2013-11-28 14:55:10 -05:00
|
|
|
lock.lock();
|
2013-01-22 10:01:08 -05:00
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
continue;
|
2013-01-22 10:01:08 -05:00
|
|
|
}
|
|
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
m_PendingCheckables.insert(checkable);
|
2013-03-06 07:01:51 -05:00
|
|
|
|
|
|
|
|
lock.unlock();
|
|
|
|
|
|
2013-09-10 03:26:46 -04:00
|
|
|
if (forced) {
|
2014-04-05 13:02:45 -04:00
|
|
|
ObjectLock olock(checkable);
|
|
|
|
|
checkable->SetForceNextCheck(false);
|
2013-03-04 09:52:42 -05:00
|
|
|
}
|
2013-01-23 09:25:00 -05:00
|
|
|
|
2014-05-28 07:03:44 -04:00
|
|
|
Log(LogDebug, "CheckerComponent", "Executing check for '" + checkable->GetName() + "'");
|
2012-06-17 14:35:56 -04:00
|
|
|
|
2013-03-25 13:36:15 -04:00
|
|
|
CheckerComponent::Ptr self = GetSelf();
|
2014-04-22 13:47:19 -04:00
|
|
|
Utility::QueueAsyncCallback(boost::bind(&CheckerComponent::ExecuteCheckHelper, self, checkable));
|
2013-03-06 07:01:51 -05:00
|
|
|
|
|
|
|
|
lock.lock();
|
2012-10-15 02:52:31 -04:00
|
|
|
}
|
2012-06-14 05:23:25 -04:00
|
|
|
}
|
|
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
void CheckerComponent::ExecuteCheckHelper(const Checkable::Ptr& checkable)
|
2012-06-17 14:35:56 -04:00
|
|
|
{
|
2013-03-25 13:36:15 -04:00
|
|
|
try {
|
2014-04-05 13:02:45 -04:00
|
|
|
checkable->ExecuteCheck();
|
2013-03-25 13:36:15 -04:00
|
|
|
} catch (const std::exception& ex) {
|
2014-04-22 13:02:45 -04:00
|
|
|
CheckResult::Ptr cr = make_shared<CheckResult>();
|
|
|
|
|
cr->SetState(ServiceUnknown);
|
|
|
|
|
|
|
|
|
|
String output = "Exception occured while checking '" + checkable->GetName() + "': " + DiagnosticInformation(ex);
|
|
|
|
|
cr->SetOutput(output);
|
|
|
|
|
|
|
|
|
|
double now = Utility::GetTime();
|
|
|
|
|
cr->SetScheduleStart(now);
|
|
|
|
|
cr->SetScheduleEnd(now);
|
|
|
|
|
cr->SetExecutionStart(now);
|
|
|
|
|
cr->SetExecutionEnd(now);
|
|
|
|
|
|
|
|
|
|
checkable->ProcessCheckResult(cr);
|
|
|
|
|
|
|
|
|
|
Log(LogCritical, "checker", output);
|
2013-03-25 13:36:15 -04:00
|
|
|
}
|
|
|
|
|
|
2013-03-27 11:26:56 -04:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
2013-02-18 08:40:24 -05:00
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
/* remove the object from the list of pending objects; if it's not in the
|
2013-03-27 11:26:56 -04:00
|
|
|
* list this was a manual (i.e. forced) check and we must not re-add the
|
2014-04-05 13:02:45 -04:00
|
|
|
* object to the list because it's already there. */
|
2014-04-03 09:36:13 -04:00
|
|
|
CheckerComponent::CheckableSet::iterator it;
|
2014-04-05 13:02:45 -04:00
|
|
|
it = m_PendingCheckables.find(checkable);
|
2014-04-03 09:36:13 -04:00
|
|
|
if (it != m_PendingCheckables.end()) {
|
|
|
|
|
m_PendingCheckables.erase(it);
|
2013-09-13 01:49:12 -04:00
|
|
|
|
2014-05-03 14:02:22 -04:00
|
|
|
if (checkable->IsActive())
|
2014-04-05 13:02:45 -04:00
|
|
|
m_IdleCheckables.insert(checkable);
|
2013-09-13 01:49:12 -04:00
|
|
|
|
2013-03-27 11:26:56 -04:00
|
|
|
m_CV.notify_all();
|
|
|
|
|
}
|
2012-07-15 11:29:59 -04:00
|
|
|
}
|
2012-06-25 08:13:24 -04:00
|
|
|
|
2014-05-28 07:03:44 -04:00
|
|
|
Log(LogDebug, "CheckerComponent", "Check finished for object '" + checkable->GetName() + "'");
|
2012-07-13 15:00:54 -04:00
|
|
|
}
|
2012-06-20 09:23:31 -04:00
|
|
|
|
2012-07-13 15:00:54 -04:00
|
|
|
void CheckerComponent::ResultTimerHandler(void)
|
|
|
|
|
{
|
2013-03-16 16:18:53 -04:00
|
|
|
std::ostringstream msgbuf;
|
2013-02-17 13:14:34 -05:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
|
|
|
|
|
2014-05-26 14:56:34 -04:00
|
|
|
msgbuf << "Pending checkables: " << m_PendingCheckables.size() << "; Idle checkables: " << m_IdleCheckables.size() << "; Checks/s: "
|
|
|
|
|
<< (CIB::GetActiveHostChecksStatistics(5) + CIB::GetActiveServiceChecksStatistics(5)) / 5.0;
|
2013-02-17 13:14:34 -05:00
|
|
|
}
|
|
|
|
|
|
2014-05-28 07:03:44 -04:00
|
|
|
Log(LogNotice, "CheckerComponent", msgbuf.str());
|
2012-06-17 14:35:56 -04:00
|
|
|
}
|
|
|
|
|
|
2013-09-13 01:49:12 -04:00
|
|
|
void CheckerComponent::ObjectHandler(const DynamicObject::Ptr& object)
|
2012-06-14 05:23:25 -04:00
|
|
|
{
|
2014-04-03 09:36:13 -04:00
|
|
|
if (!Type::GetByName("Checkable")->IsAssignableFrom(object->GetReflectionType()))
|
2013-08-20 05:06:04 -04:00
|
|
|
return;
|
2013-02-21 10:12:50 -05:00
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
Checkable::Ptr checkable = static_pointer_cast<Checkable>(object);
|
2013-08-20 05:06:04 -04:00
|
|
|
|
2014-05-03 14:02:22 -04:00
|
|
|
Zone::Ptr zone = Zone::GetByName(checkable->GetZone());
|
|
|
|
|
bool same_zone = (!zone || Zone::GetLocalZone() == zone);
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
2012-06-14 10:09:04 -04:00
|
|
|
|
2014-05-09 05:32:24 -04:00
|
|
|
if (object->IsActive() && !object->IsPaused() && same_zone) {
|
2014-04-05 13:02:45 -04:00
|
|
|
if (m_PendingCheckables.find(checkable) != m_PendingCheckables.end())
|
2013-09-13 01:49:12 -04:00
|
|
|
return;
|
2012-06-14 10:09:04 -04:00
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
m_IdleCheckables.insert(checkable);
|
2013-09-13 01:49:12 -04:00
|
|
|
} else {
|
2014-04-05 13:02:45 -04:00
|
|
|
m_IdleCheckables.erase(checkable);
|
|
|
|
|
m_PendingCheckables.erase(checkable);
|
2013-09-13 01:49:12 -04:00
|
|
|
}
|
2013-08-20 05:06:04 -04:00
|
|
|
|
2013-02-18 08:40:24 -05:00
|
|
|
m_CV.notify_all();
|
2012-07-17 06:57:21 -04:00
|
|
|
}
|
2012-06-14 05:23:25 -04:00
|
|
|
}
|
|
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
void CheckerComponent::NextCheckChangedHandler(const Checkable::Ptr& checkable)
|
2013-01-22 06:44:23 -05:00
|
|
|
{
|
2013-02-21 10:12:50 -05:00
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
|
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
/* remove and re-insert the object from the set in order to force an index update */
|
2014-04-03 09:36:13 -04:00
|
|
|
typedef boost::multi_index::nth_index<CheckableSet, 0>::type CheckableView;
|
|
|
|
|
CheckableView& idx = boost::get<0>(m_IdleCheckables);
|
2013-02-17 13:14:34 -05:00
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
CheckableView::iterator it = idx.find(checkable);
|
2013-02-21 10:12:50 -05:00
|
|
|
if (it == idx.end())
|
|
|
|
|
return;
|
2013-01-22 06:44:23 -05:00
|
|
|
|
2014-04-05 13:02:45 -04:00
|
|
|
idx.erase(checkable);
|
|
|
|
|
idx.insert(checkable);
|
2013-02-21 10:12:50 -05:00
|
|
|
m_CV.notify_all();
|
2013-01-22 06:44:23 -05:00
|
|
|
}
|
2014-02-18 04:53:44 -05:00
|
|
|
|
2014-04-03 09:36:13 -04:00
|
|
|
unsigned long CheckerComponent::GetIdleCheckables(void)
|
2014-02-18 04:53:44 -05:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
|
|
|
|
|
2014-04-03 09:36:13 -04:00
|
|
|
return m_IdleCheckables.size();
|
2014-02-18 04:53:44 -05:00
|
|
|
}
|
|
|
|
|
|
2014-04-03 09:36:13 -04:00
|
|
|
unsigned long CheckerComponent::GetPendingCheckables(void)
|
2014-02-18 04:53:44 -05:00
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
|
|
|
|
|
2014-04-03 09:36:13 -04:00
|
|
|
return m_PendingCheckables.size();
|
2014-02-18 04:53:44 -05:00
|
|
|
}
|