2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2016-04-19 13:54:41 +02:00
|
|
|
|
|
|
|
#ifndef INFLUXDBWRITER_H
|
|
|
|
#define INFLUXDBWRITER_H
|
|
|
|
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "perfdata/influxdbwriter-ti.hpp"
|
2016-04-19 13:54:41 +02:00
|
|
|
#include "icinga/service.hpp"
|
|
|
|
#include "base/configobject.hpp"
|
|
|
|
#include "base/tcpsocket.hpp"
|
|
|
|
#include "base/timer.hpp"
|
2017-05-04 10:29:49 +02:00
|
|
|
#include "base/workqueue.hpp"
|
2016-04-19 13:54:41 +02:00
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An Icinga InfluxDB writer.
|
|
|
|
*
|
|
|
|
* @ingroup perfdata
|
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class InfluxdbWriter final : public ObjectImpl<InfluxdbWriter>
|
2016-04-19 13:54:41 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
DECLARE_OBJECT(InfluxdbWriter);
|
|
|
|
DECLARE_OBJECTNAME(InfluxdbWriter);
|
|
|
|
|
|
|
|
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
|
|
|
|
2018-01-11 07:08:09 +01:00
|
|
|
void ValidateHostTemplate(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils) override;
|
|
|
|
void ValidateServiceTemplate(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils) override;
|
2016-04-19 13:54:41 +02:00
|
|
|
|
|
|
|
protected:
|
2018-01-04 05:12:56 +01:00
|
|
|
void OnConfigLoaded() override;
|
2018-10-24 13:38:06 +02:00
|
|
|
void Resume() override;
|
|
|
|
void Pause() override;
|
2016-04-19 13:54:41 +02:00
|
|
|
|
|
|
|
private:
|
2018-01-04 09:43:49 +01:00
|
|
|
WorkQueue m_WorkQueue{10000000, 1};
|
2016-04-19 13:54:41 +02:00
|
|
|
Timer::Ptr m_FlushTimer;
|
2017-05-04 10:29:49 +02:00
|
|
|
std::vector<String> m_DataBuffer;
|
|
|
|
|
2016-04-19 13:54:41 +02:00
|
|
|
void CheckResultHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
|
2017-10-24 15:23:58 +02:00
|
|
|
void CheckResultHandlerWQ(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr);
|
2019-03-19 08:35:55 +01:00
|
|
|
void SendMetric(const Checkable::Ptr& checkable, const Dictionary::Ptr& tmpl,
|
|
|
|
const String& label, const Dictionary::Ptr& fields, double ts);
|
2018-01-04 04:25:35 +01:00
|
|
|
void FlushTimeout();
|
|
|
|
void FlushTimeoutWQ();
|
|
|
|
void Flush();
|
2016-04-19 13:54:41 +02:00
|
|
|
|
2017-10-24 15:23:58 +02:00
|
|
|
static String EscapeKeyOrTagValue(const String& str);
|
|
|
|
static String EscapeValue(const Value& value);
|
2016-06-07 14:35:16 +02:00
|
|
|
|
2017-08-14 17:20:45 +02:00
|
|
|
Stream::Ptr Connect();
|
2017-05-04 10:29:49 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void AssertOnWorkQueue();
|
2017-05-04 10:29:49 +02:00
|
|
|
|
|
|
|
void ExceptionHandler(boost::exception_ptr exp);
|
2016-04-19 13:54:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* INFLUXDBWRITER_H */
|