2013-06-06 11:26:00 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-01-02 12:06:00 +01:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
2013-06-06 11:26:00 +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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/filelogger.hpp"
|
2015-03-28 11:04:42 +01:00
|
|
|
#include "base/filelogger.tcpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/statsfunction.hpp"
|
|
|
|
#include "base/application.hpp"
|
2013-06-06 11:26:30 +02:00
|
|
|
#include <fstream>
|
2013-06-06 11:26:00 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-06-06 11:26:30 +02:00
|
|
|
REGISTER_TYPE(FileLogger);
|
2013-06-06 11:26:00 +02:00
|
|
|
|
2015-09-21 11:44:58 +02:00
|
|
|
REGISTER_STATSFUNCTION(FileLogger, &FileLogger::StatsFunc);
|
2014-02-17 16:34:18 +01:00
|
|
|
|
2015-02-13 11:28:43 +01:00
|
|
|
void FileLogger::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr&)
|
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
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const FileLogger::Ptr& filelogger : ConfigType::GetObjectsByType<FileLogger>()) {
|
2014-02-18 10:53:44 +01:00
|
|
|
nodes->Set(filelogger->GetName(), 1); //add more stats
|
|
|
|
}
|
|
|
|
|
|
|
|
status->Set("filelogger", nodes);
|
2014-02-17 16:34:18 +01:00
|
|
|
}
|
|
|
|
|
2013-06-06 11:26:00 +02:00
|
|
|
/**
|
2013-06-06 11:26:30 +02:00
|
|
|
* Constructor for the FileLogger class.
|
2013-06-06 11:26:00 +02:00
|
|
|
*/
|
2015-08-20 17:18:48 +02:00
|
|
|
void FileLogger::Start(bool runtimeCreated)
|
2013-06-06 11:26:00 +02:00
|
|
|
{
|
2014-05-22 11:22:30 +02:00
|
|
|
ReopenLogFile();
|
|
|
|
|
2017-11-21 11:52:55 +01:00
|
|
|
Application::OnReopenLogs.connect(std::bind(&FileLogger::ReopenLogFile, this));
|
2017-12-18 09:32:09 +01:00
|
|
|
|
|
|
|
ObjectImpl<FileLogger>::Start(runtimeCreated);
|
2014-05-22 11:22:30 +02:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void FileLogger::ReopenLogFile()
|
2014-05-22 11:22:30 +02:00
|
|
|
{
|
2018-01-04 09:07:03 +01:00
|
|
|
auto *stream = new std::ofstream();
|
2013-06-06 11:26:30 +02:00
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
String path = GetPath();
|
2013-06-06 11:26:30 +02:00
|
|
|
|
|
|
|
try {
|
2014-01-14 17:25:05 +01:00
|
|
|
stream->open(path.CStr(), std::fstream::app | std::fstream::out);
|
2013-06-06 11:26:30 +02:00
|
|
|
|
|
|
|
if (!stream->good())
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Could not open logfile '" + path + "'"));
|
|
|
|
} catch (...) {
|
|
|
|
delete stream;
|
|
|
|
throw;
|
2013-06-06 11:26:00 +02:00
|
|
|
}
|
|
|
|
|
2013-06-06 11:26:30 +02:00
|
|
|
BindStream(stream, true);
|
2013-08-20 11:06:04 +02:00
|
|
|
}
|