// SPDX-FileCopyrightText: 2012 Icinga GmbH // SPDX-License-Identifier: GPL-2.0-or-later #ifndef GELFWRITER_H #define GELFWRITER_H #include "perfdata/gelfwriter-ti.hpp" #include "perfdata/perfdatawriterconnection.hpp" #include "icinga/checkable.hpp" #include "base/configobject.hpp" #include "base/workqueue.hpp" namespace icinga { /** * An Icinga Gelf writer for Graylog. * * @ingroup perfdata */ class GelfWriter final : public ObjectImpl { public: DECLARE_OBJECT(GelfWriter); DECLARE_OBJECTNAME(GelfWriter); static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata); protected: void OnConfigLoaded() override; void Start(bool runtimeCreated) override; void Resume() override; void Pause() override; private: PerfdataWriterConnection::Ptr m_Connection; Locked m_LockedConnection; WorkQueue m_WorkQueue{10000000, 1}; Shared::Ptr m_SslContext; boost::signals2::connection m_HandleCheckResults, m_HandleNotifications, m_HandleStateChanges; void CheckResultHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr); void NotificationToUserHandler(const Checkable::Ptr& checkable, NotificationType notificationType, const CheckResult::Ptr& cr, const String& author, const String& commentText, const String& commandName); void StateChangeHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr); String ComposeGelfMessage(const Dictionary::Ptr& fields, const String& source, double ts); void SendLogMessage(const Checkable::Ptr& checkable, const String& gelfMessage); void AssertOnWorkQueue(); void ExceptionHandler(std::exception_ptr exp); }; } #endif /* GELFWRITER_H */