summaryrefslogtreecommitdiffstats
path: root/lib/base/journaldlogger.cpp
blob: 92d6af7a5332f08d99e1d60f1a85c8d644078e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* Icinga 2 | (c) 2021 Icinga GmbH | GPLv2+ */

#include "base/i2-base.hpp"
#if !defined(_WIN32) && defined(HAVE_SYSTEMD)
#include "base/journaldlogger.hpp"
#include "base/journaldlogger-ti.cpp"
#include "base/configtype.hpp"
#include "base/statsfunction.hpp"
#include "base/sysloglogger.hpp"
#include <systemd/sd-journal.h>

using namespace icinga;

REGISTER_TYPE(JournaldLogger);

REGISTER_STATSFUNCTION(JournaldLogger, &JournaldLogger::StatsFunc);

void JournaldLogger::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr&)
{
	DictionaryData nodes;

	for (const JournaldLogger::Ptr& journaldlogger : ConfigType::GetObjectsByType<JournaldLogger>()) {
		nodes.emplace_back(journaldlogger->GetName(), 1); //add more stats
	}

	status->Set("journaldlogger", new Dictionary(std::move(nodes)));
}

void JournaldLogger::OnConfigLoaded()
{
	ObjectImpl<JournaldLogger>::OnConfigLoaded();
	m_ConfiguredJournalFields.clear();
	m_ConfiguredJournalFields.push_back(
		String("SYSLOG_FACILITY=") + Value(SyslogHelper::FacilityToNumber(GetFacility())));
	const String identifier = GetIdentifier();
	if (!identifier.IsEmpty()) {
		m_ConfiguredJournalFields.push_back(String("SYSLOG_IDENTIFIER=" + identifier));
	}
}

void JournaldLogger::ValidateFacility(const Lazy<String>& lvalue, const ValidationUtils& utils)
{
	ObjectImpl<JournaldLogger>::ValidateFacility(lvalue, utils);
	if (!SyslogHelper::ValidateFacility(lvalue()))
		BOOST_THROW_EXCEPTION(ValidationError(this, { "facility" }, "Invalid facility specified."));
}

/**
 * Processes a log entry and outputs it to journald.
 *
 * @param entry The log entry.
 */
void JournaldLogger::ProcessLogEntry(const LogEntry& entry)
{
	const std::vector<String> sdFields {
		String("MESSAGE=") + entry.Message.GetData(),
		String("PRIORITY=") + Value(SyslogHelper::SeverityToNumber(entry.Severity)),
		String("ICINGA2_FACILITY=") + entry.Facility,
	};
	SystemdJournalSend(sdFields);
}

void JournaldLogger::Flush()
{
	/* Nothing to do here. */
}

void JournaldLogger::SystemdJournalSend(const std::vector<String>& varJournalFields) const
{
	struct iovec iovec[m_ConfiguredJournalFields.size() + varJournalFields.size()];
	int iovecCount = 0;

	for (const String& journalField: m_ConfiguredJournalFields) {
		iovec[iovecCount] = IovecFromString(journalField);
		iovecCount++;
	}
	for (const String& journalField: varJournalFields) {
		iovec[iovecCount] = IovecFromString(journalField);
		iovecCount++;
	}
	sd_journal_sendv(iovec, iovecCount);
}

struct iovec JournaldLogger::IovecFromString(const String& s) {
	return { const_cast<char *>(s.CStr()), s.GetLength() };
}
#endif /* !_WIN32 && HAVE_SYSTEMD */