icinga2/lib/perfdata/elasticsearchwriter.hpp

65 lines
2.2 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2017-09-07 15:11:57 +02:00
#ifndef ELASTICSEARCHWRITER_H
#define ELASTICSEARCHWRITER_H
2017-09-07 15:11:57 +02:00
2018-01-18 13:50:38 +01:00
#include "perfdata/elasticsearchwriter-ti.hpp"
2017-09-07 15:11:57 +02:00
#include "icinga/service.hpp"
#include "base/configobject.hpp"
#include "base/workqueue.hpp"
#include "base/timer.hpp"
#include "base/tlsstream.hpp"
2017-09-07 15:11:57 +02:00
namespace icinga
{
2018-01-04 06:11:04 +01:00
class ElasticsearchWriter final : public ObjectImpl<ElasticsearchWriter>
2017-09-07 15:11:57 +02:00
{
public:
DECLARE_OBJECT(ElasticsearchWriter);
DECLARE_OBJECTNAME(ElasticsearchWriter);
2017-09-07 15:11:57 +02:00
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
static String FormatTimestamp(double ts);
protected:
void OnConfigLoaded() override;
void Resume() override;
void Pause() override;
2017-09-07 15:11:57 +02:00
private:
String m_EventPrefix;
WorkQueue m_WorkQueue{10000000, 1};
2017-09-07 15:11:57 +02:00
Timer::Ptr m_FlushTimer;
std::vector<String> m_DataBuffer;
boost::mutex m_DataBufferMutex;
void AddCheckResult(const Dictionary::Ptr& fields, const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
void StateChangeHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, StateType type);
void StateChangeHandlerInternal(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, StateType type);
void CheckResultHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
void InternalCheckResultHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
void NotificationSentToAllUsersHandler(const Notification::Ptr& notification,
const Checkable::Ptr& checkable, const std::set<User::Ptr>& users, NotificationType type,
const CheckResult::Ptr& cr, const String& author, const String& text);
2017-09-07 15:11:57 +02:00
void NotificationSentToAllUsersHandlerInternal(const Notification::Ptr& notification,
const Checkable::Ptr& checkable, const std::set<User::Ptr>& users, NotificationType type,
const CheckResult::Ptr& cr, const String& author, const String& text);
2017-09-07 15:11:57 +02:00
2019-03-19 09:01:12 +01:00
void Enqueue(const Checkable::Ptr& checkable, const String& type,
const Dictionary::Ptr& fields, double ts);
2017-09-07 15:11:57 +02:00
OptionalTlsStream Connect();
void AssertOnWorkQueue();
2017-09-07 15:11:57 +02:00
void ExceptionHandler(boost::exception_ptr exp);
void FlushTimeout();
void Flush();
2017-09-07 15:11:57 +02:00
void SendRequest(const String& body);
};
}
#endif /* ELASTICSEARCHWRITER_H */