2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-06-06 11:26:00 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/filelogger.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "base/filelogger-ti.cpp"
|
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
|
|
|
{
|
2018-01-11 11:17:38 +01:00
|
|
|
DictionaryData nodes;
|
2014-02-18 10:53:44 +01:00
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const FileLogger::Ptr& filelogger : ConfigType::GetObjectsByType<FileLogger>()) {
|
2018-01-11 11:17:38 +01:00
|
|
|
nodes.emplace_back(filelogger->GetName(), 1); //add more stats
|
2014-02-18 10:53:44 +01:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
status->Set("filelogger", new Dictionary(std::move(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);
|
2018-07-19 12:48:01 +02:00
|
|
|
|
|
|
|
Log(LogInformation, "FileLogger")
|
|
|
|
<< "'" << GetName() << "' started.";
|
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
|
|
|
}
|