blob: d1d685907870a712672b189bf631ba60e5ab2e0c (
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
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef SYSLOGLOGGER_H
#define SYSLOGLOGGER_H
#ifndef _WIN32
#include "base/i2-base.hpp"
#include "base/sysloglogger-ti.hpp"
namespace icinga
{
/**
* Helper class to handle syslog facility strings and numbers.
*
* @ingroup base
*/
class SyslogHelper final
{
public:
static void StaticInitialize();
static bool ValidateFacility(const String& facility);
static int SeverityToNumber(LogSeverity severity);
static int FacilityToNumber(const String& facility);
private:
static std::map<String, int> m_FacilityMap;
};
/**
* A logger that logs to syslog.
*
* @ingroup base
*/
class SyslogLogger final : public ObjectImpl<SyslogLogger>
{
public:
DECLARE_OBJECT(SyslogLogger);
DECLARE_OBJECTNAME(SyslogLogger);
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
void OnConfigLoaded() override;
void ValidateFacility(const Lazy<String>& lvalue, const ValidationUtils& utils) override;
protected:
int m_Facility;
void ProcessLogEntry(const LogEntry& entry) override;
void Flush() override;
};
}
#endif /* _WIN32 */
#endif /* SYSLOGLOGGER_H */
|