icinga2/lib/perfdata/perfdatawriter.cpp

158 lines
5.7 KiB
C++
Raw Normal View History

2013-02-28 11:45:47 +01:00
/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
2013-02-28 11:45:47 +01: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 16:23:35 +02:00
#include "perfdata/perfdatawriter.hpp"
#include "perfdata/perfdatawriter.tcpp"
2014-05-25 16:23:35 +02:00
#include "icinga/service.hpp"
#include "icinga/macroprocessor.hpp"
#include "icinga/icingaapplication.hpp"
#include "base/dynamictype.hpp"
#include "base/objectlock.hpp"
2014-10-19 14:21:12 +02:00
#include "base/logger.hpp"
2014-05-25 16:23:35 +02:00
#include "base/convert.hpp"
#include "base/utility.hpp"
#include "base/context.hpp"
#include "base/exception.hpp"
2014-05-25 16:23:35 +02:00
#include "base/application.hpp"
#include "base/statsfunction.hpp"
2013-02-28 11:45:47 +01:00
using namespace icinga;
2013-03-01 12:07:52 +01:00
REGISTER_TYPE(PerfdataWriter);
2013-02-28 11:45:47 +01:00
REGISTER_STATSFUNCTION(PerfdataWriterStats, &PerfdataWriter::StatsFunc);
void PerfdataWriter::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr&)
{
Dictionary::Ptr nodes = new Dictionary();
BOOST_FOREACH(const PerfdataWriter::Ptr& perfdatawriter, DynamicType::GetObjectsByType<PerfdataWriter>()) {
nodes->Set(perfdatawriter->GetName(), 1); //add more stats
}
status->Set("perfdatawriter", nodes);
}
2013-02-28 11:45:47 +01:00
void PerfdataWriter::Start(void)
{
DynamicObject::Start();
2014-04-03 15:36:13 +02:00
Checkable::OnNewCheckResult.connect(boost::bind(&PerfdataWriter::CheckResultHandler, this, _1, _2));
2013-02-28 11:45:47 +01:00
m_RotationTimer = new Timer();
2013-02-28 11:45:47 +01:00
m_RotationTimer->OnTimerExpired.connect(boost::bind(&PerfdataWriter::RotationTimerHandler, this));
m_RotationTimer->SetInterval(GetRotationInterval());
m_RotationTimer->Start();
RotateFile(m_ServiceOutputFile, GetServiceTempPath(), GetServicePerfdataPath());
RotateFile(m_HostOutputFile, GetHostTempPath(), GetHostPerfdataPath());
2013-02-28 11:45:47 +01:00
}
Value PerfdataWriter::EscapeMacroMetric(const Value& value)
{
if (value.IsObjectType<Array>())
return Utility::Join(value, ';');
else
return value;
}
2014-04-03 15:36:13 +02:00
void PerfdataWriter::CheckResultHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr)
2013-02-28 11:45:47 +01:00
{
2014-04-03 15:36:13 +02:00
CONTEXT("Writing performance data for object '" + checkable->GetName() + "'");
2014-04-03 15:36:13 +02:00
if (!IcingaApplication::GetInstance()->GetEnablePerfdata() || !checkable->GetEnablePerfdata())
2013-10-08 11:57:35 +02:00
return;
2014-04-03 15:36:13 +02:00
Service::Ptr service = dynamic_pointer_cast<Service>(checkable);
Host::Ptr host;
if (service)
host = service->GetHost();
else
host = static_pointer_cast<Host>(checkable);
2013-02-28 11:45:47 +01:00
MacroProcessor::ResolverList resolvers;
2014-04-03 15:36:13 +02:00
if (service)
resolvers.push_back(std::make_pair("service", service));
resolvers.push_back(std::make_pair("host", host));
resolvers.push_back(std::make_pair("icinga", IcingaApplication::GetInstance()));
2014-04-03 15:36:13 +02:00
if (service) {
String line = MacroProcessor::ResolveMacros(GetServiceFormatTemplate(), resolvers, cr, NULL, &PerfdataWriter::EscapeMacroMetric);
2014-04-03 15:36:13 +02:00
{
ObjectLock olock(this);
if (!m_ServiceOutputFile.good())
return;
2013-02-28 11:45:47 +01:00
2014-04-03 15:36:13 +02:00
m_ServiceOutputFile << line << "\n";
}
} else {
String line = MacroProcessor::ResolveMacros(GetHostFormatTemplate(), resolvers, cr, NULL, &PerfdataWriter::EscapeMacroMetric);
{
ObjectLock olock(this);
if (!m_HostOutputFile.good())
return;
m_HostOutputFile << line << "\n";
}
}
2013-02-28 11:45:47 +01:00
}
void PerfdataWriter::RotateFile(std::ofstream& output, const String& temp_path, const String& perfdata_path)
2013-02-28 11:45:47 +01:00
{
2013-03-02 09:07:47 +01:00
ObjectLock olock(this);
if (output.good()) {
output.close();
2013-02-28 11:45:47 +01:00
String finalFile = perfdata_path + "." + Convert::ToString((long)Utility::GetTime());
(void) rename(temp_path.CStr(), finalFile.CStr());
2013-02-28 11:45:47 +01:00
}
output.open(temp_path.CStr());
2013-02-28 11:45:47 +01:00
if (!output.good())
2014-10-19 17:52:17 +02:00
Log(LogWarning, "PerfdataWriter")
<< "Could not open perfdata file '" << temp_path << "' for writing. Perfdata will be lost.";
2013-02-28 11:45:47 +01:00
}
void PerfdataWriter::RotationTimerHandler(void)
{
RotateFile(m_ServiceOutputFile, GetServiceTempPath(), GetServicePerfdataPath());
RotateFile(m_HostOutputFile, GetHostTempPath(), GetHostPerfdataPath());
2013-02-28 11:45:47 +01:00
}
void PerfdataWriter::ValidateHostFormatTemplate(const String& value, const ValidationUtils& utils)
{
ObjectImpl<PerfdataWriter>::ValidateHostFormatTemplate(value, utils);
2015-02-11 15:47:45 +01:00
if (!MacroProcessor::ValidateMacroString(value))
BOOST_THROW_EXCEPTION(ValidationError(this, boost::assign::list_of("host_format_template"), "Closing $ not found in macro format string '" + value + "'."));
}
void PerfdataWriter::ValidateServiceFormatTemplate(const String& value, const ValidationUtils& utils)
{
ObjectImpl<PerfdataWriter>::ValidateServiceFormatTemplate(value, utils);
if (!MacroProcessor::ValidateMacroString(value))
BOOST_THROW_EXCEPTION(ValidationError(this, boost::assign::list_of("service_format_template"), "Closing $ not found in macro format string '" + value + "'."));
2015-02-11 15:47:45 +01:00
}