2019-02-25 14:48:22 +01:00
|
|
|
/* 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"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/tcpsocket.hpp"
|
|
|
|
#include "base/timer.hpp"
|
2017-05-15 17:35:36 +02:00
|
|
|
#include "base/workqueue.hpp"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <fstream>
|
2018-11-12 20:09:44 +01:00
|
|
|
#include <boost/thread/mutex.hpp>
|
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
|
|
|
|
2015-02-07 22:36:17 +01:00
|
|
|
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
2014-02-17 16:34:18 +01:00
|
|
|
|
2018-01-11 07:08:09 +01:00
|
|
|
void ValidateHostNameTemplate(const Lazy<String>& lvalue, const ValidationUtils& utils) override;
|
|
|
|
void ValidateServiceNameTemplate(const Lazy<String>& lvalue, const ValidationUtils& utils) override;
|
2015-02-11 13:12:08 +01:00
|
|
|
|
2013-02-28 11:45:47 +01:00
|
|
|
protected:
|
2018-01-04 05:12:56 +01:00
|
|
|
void OnConfigLoaded() override;
|
2018-10-24 13:29:27 +02:00
|
|
|
void Resume() override;
|
|
|
|
void Pause() override;
|
2013-02-28 11:45:47 +01:00
|
|
|
|
|
|
|
private:
|
2019-07-25 14:55:22 +02:00
|
|
|
Shared<AsioTcpStream>::Ptr m_Stream;
|
2018-11-12 20:09:44 +01:00
|
|
|
boost::mutex m_StreamMutex;
|
2018-01-04 09:43:49 +01:00
|
|
|
WorkQueue m_WorkQueue{10000000, 1};
|
2015-02-07 22:36:17 +01:00
|
|
|
|
2013-11-09 14:22:38 +01:00
|
|
|
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);
|
2017-06-06 19:50:37 +02:00
|
|
|
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);
|
2017-08-09 18:52:35 +02:00
|
|
|
static String EscapeMetric(const String& str);
|
2015-06-19 18:11:55 +02:00
|
|
|
static String EscapeMetricLabel(const String& str);
|
2017-08-09 18:52:35 +02:00
|
|
|
static Value EscapeMacroMetric(const Value& value);
|
2013-11-07 14:38:37 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void ReconnectTimerHandler();
|
2017-05-15 17:35:36 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void Disconnect();
|
2019-02-20 14:54:23 +01:00
|
|
|
void DisconnectInternal();
|
2018-01-04 04:25:35 +01:00
|
|
|
void Reconnect();
|
2019-02-20 14:54:23 +01:00
|
|
|
void ReconnectInternal();
|
2017-05-15 17:35:36 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void AssertOnWorkQueue();
|
2017-05-15 17:35:36 +02:00
|
|
|
|
|
|
|
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 */
|