2026-01-27 09:06:40 -05:00
|
|
|
// SPDX-FileCopyrightText: 2021 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2021-04-08 05:23:26 -04:00
|
|
|
|
|
|
|
|
#ifndef WINDOWSEVENTLOGLOGGER_H
|
|
|
|
|
#define WINDOWSEVENTLOGLOGGER_H
|
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
|
#include "base/windowseventloglogger-ti.hpp"
|
|
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A logger that logs to the Windows Event Log.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup base
|
|
|
|
|
*/
|
|
|
|
|
class WindowsEventLogLogger final : public ObjectImpl<WindowsEventLogLogger>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DECLARE_OBJECT(WindowsEventLogLogger);
|
|
|
|
|
DECLARE_OBJECTNAME(WindowsEventLogLogger);
|
|
|
|
|
|
|
|
|
|
static void StaticInitialize();
|
|
|
|
|
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
|
|
|
|
|
2021-04-08 07:49:53 -04:00
|
|
|
static void WriteToWindowsEventLog(const LogEntry& entry);
|
|
|
|
|
|
2021-04-08 05:23:26 -04:00
|
|
|
protected:
|
|
|
|
|
void ProcessLogEntry(const LogEntry& entry) override;
|
|
|
|
|
void Flush() override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
|
|
|
|
#endif /* WINDOWSEVENTLOGLOGGER_H */
|