icinga2/lib/perfdata/graphitewriter.hpp

70 lines
1.9 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-02-28 11:45:47 +01:00
2013-10-14 20:12:42 +02:00
#ifndef GRAPHITEWRITER_H
#define GRAPHITEWRITER_H
2013-02-28 11:45:47 +01:00
2018-01-18 13:50:38 +01:00
#include "perfdata/graphitewriter-ti.hpp"
2014-05-25 16:23:35 +02:00
#include "icinga/service.hpp"
#include "base/configobject.hpp"
2014-05-25 16:23:35 +02:00
#include "base/tcpsocket.hpp"
#include "base/timer.hpp"
#include "base/workqueue.hpp"
2013-03-16 21:18:53 +01:00
#include <fstream>
2021-02-02 10:16:04 +01:00
#include <mutex>
2013-03-16 21:18:53 +01:00
2013-02-28 11:45:47 +01:00
namespace icinga
{
/**
2013-10-14 20:12:42 +02:00
* An Icinga graphite writer.
2013-02-28 11:45:47 +01:00
*
2013-10-14 20:12:42 +02:00
* @ingroup perfdata
2013-02-28 11:45:47 +01:00
*/
2018-01-04 06:11:04 +01:00
class GraphiteWriter final : public ObjectImpl<GraphiteWriter>
2013-02-28 11:45:47 +01:00
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(GraphiteWriter);
DECLARE_OBJECTNAME(GraphiteWriter);
2013-02-28 11:45:47 +01:00
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
void ValidateHostNameTemplate(const Lazy<String>& lvalue, const ValidationUtils& utils) override;
void ValidateServiceNameTemplate(const Lazy<String>& lvalue, const ValidationUtils& utils) override;
2013-02-28 11:45:47 +01:00
protected:
void OnConfigLoaded() override;
void Resume() override;
void Pause() override;
2013-02-28 11:45:47 +01:00
private:
Shared<AsioTcpStream>::Ptr m_Stream;
2021-02-02 10:16:04 +01:00
std::mutex m_StreamMutex;
WorkQueue m_WorkQueue{10000000, 1};
boost::signals2::connection m_HandleCheckResults;
Timer::Ptr m_ReconnectTimer;
2013-02-28 11:45:47 +01:00
2014-04-03 15:36:13 +02:00
void CheckResultHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
void CheckResultHandlerInternal(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
2019-01-17 08:53:55 +01:00
void SendMetric(const Checkable::Ptr& checkable, const String& prefix, const String& name, double value, double ts);
void SendPerfdata(const Checkable::Ptr& checkable, const String& prefix, const CheckResult::Ptr& cr, double ts);
static String EscapeMetric(const String& str);
static String EscapeMetricLabel(const String& str);
static Value EscapeMacroMetric(const Value& value);
void ReconnectTimerHandler();
void Disconnect();
void DisconnectInternal();
void Reconnect();
void ReconnectInternal();
void AssertOnWorkQueue();
void ExceptionHandler(boost::exception_ptr exp);
2013-02-28 11:45:47 +01:00
};
}
2013-10-14 20:12:42 +02:00
#endif /* GRAPHITEWRITER_H */