icinga2/components/perfdata/perfdatawriter.cpp

94 lines
3.3 KiB
C++
Raw Normal View History

2013-02-28 11:45:47 +01:00
/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 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. *
******************************************************************************/
2013-10-14 20:12:42 +02:00
#include "perfdata/perfdatawriter.h"
2013-03-17 20:19:29 +01:00
#include "icinga/service.h"
#include "icinga/macroprocessor.h"
#include "icinga/icingaapplication.h"
2013-03-16 21:18:53 +01:00
#include "base/dynamictype.h"
#include "base/objectlock.h"
#include "base/logger_fwd.h"
#include "base/convert.h"
2013-03-25 18:36:15 +01:00
#include "base/utility.h"
2013-03-17 20:19:29 +01:00
#include "base/application.h"
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
void PerfdataWriter::Start(void)
{
DynamicObject::Start();
2013-09-01 06:01:27 +02:00
Service::OnNewCheckResult.connect(boost::bind(&PerfdataWriter::CheckResultHandler, this, _1, _2));
2013-02-28 11:45:47 +01:00
m_RotationTimer = make_shared<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();
}
void PerfdataWriter::CheckResultHandler(const Service::Ptr& service, const CheckResult::Ptr& cr)
2013-02-28 11:45:47 +01:00
{
2013-10-16 18:36:14 +02:00
if (!IcingaApplication::GetInstance()->GetEnablePerfdata() || !service->GetEnablePerfdata())
2013-10-08 11:57:35 +02:00
return;
Host::Ptr host = service->GetHost();
2013-02-28 11:45:47 +01:00
std::vector<MacroResolver::Ptr> resolvers;
resolvers.push_back(service);
resolvers.push_back(host);
resolvers.push_back(IcingaApplication::GetInstance());
String line = MacroProcessor::ResolveMacros(GetFormatTemplate(), resolvers, cr);
2013-02-28 11:45:47 +01:00
2013-03-02 09:07:47 +01:00
ObjectLock olock(this);
2013-02-28 11:45:47 +01:00
if (!m_OutputFile.good())
return;
m_OutputFile << line << "\n";
}
void PerfdataWriter::RotateFile(void)
{
2013-03-02 09:07:47 +01:00
ObjectLock olock(this);
String tempFile = GetTempPath();
2013-02-28 11:45:47 +01:00
if (m_OutputFile.good()) {
m_OutputFile.close();
String finalFile = GetPerfdataPath() + "." + Convert::ToString((long)Utility::GetTime());
2013-02-28 11:45:47 +01:00
(void) rename(tempFile.CStr(), finalFile.CStr());
}
m_OutputFile.open(tempFile.CStr());
if (!m_OutputFile.good())
2013-03-16 21:18:53 +01:00
Log(LogWarning, "icinga", "Could not open perfdata file '" + tempFile + "' for writing. Perfdata will be lost.");
2013-02-28 11:45:47 +01:00
}
void PerfdataWriter::RotationTimerHandler(void)
{
RotateFile();
}