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 05:45:47 -05:00
2013-10-14 14:12:42 -04:00
#ifndef GRAPHITEWRITER_H
#define GRAPHITEWRITER_H
2013-02-28 05:45:47 -05:00
2018-01-18 07:50:38 -05:00
#include "perfdata/graphitewriter-ti.hpp"
2014-05-25 10:23:35 -04:00
#include "icinga/service.hpp"
#include "base/configobject.hpp"
2014-05-25 10:23:35 -04:00
#include "base/tcpsocket.hpp"
#include "base/timer.hpp"
#include "base/workqueue.hpp"
2013-03-16 16:18:53 -04:00
#include <fstream>
2021-02-02 04:16:04 -05:00
#include <mutex>
2013-03-16 16:18:53 -04:00
2013-02-28 05:45:47 -05:00
namespace icinga
{
/**
2013-10-14 14:12:42 -04:00
* An Icinga graphite writer.
2013-02-28 05:45:47 -05:00
*
2013-10-14 14:12:42 -04:00
* @ingroup perfdata
2013-02-28 05:45:47 -05:00
*/
2018-01-04 00:11:04 -05:00
class GraphiteWriter final : public ObjectImpl<GraphiteWriter>
2013-02-28 05:45:47 -05:00
{
public:
2014-11-02 18:44:04 -05:00
DECLARE_OBJECT(GraphiteWriter);
DECLARE_OBJECTNAME(GraphiteWriter);
2013-02-28 05:45:47 -05: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 05:45:47 -05:00
protected:
void OnConfigLoaded() override;
void Resume() override;
void Pause() override;
2013-02-28 05:45:47 -05:00
private:
Shared<AsioTcpStream>::Ptr m_Stream;
2021-02-02 04:16:04 -05:00
std::mutex m_StreamMutex;
WorkQueue m_WorkQueue{10000000, 1};
boost::signals2::connection m_HandleCheckResults;
Timer::Ptr m_ReconnectTimer;
2013-02-28 05:45:47 -05:00
2014-04-03 09:36:13 -04:00
void CheckResultHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
void CheckResultHandlerInternal(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
2019-01-17 02:53:55 -05: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 05:45:47 -05:00
};
}
2013-10-14 14:12:42 -04:00
#endif /* GRAPHITEWRITER_H */