2016-04-19 13:54:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-01-02 12:06:00 +01:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
2016-04-19 13:54:41 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef INFLUXDBWRITER_H
|
|
|
|
#define INFLUXDBWRITER_H
|
|
|
|
|
|
|
|
#include "perfdata/influxdbwriter.thpp"
|
|
|
|
#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);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
InfluxdbWriter();
|
2017-05-04 10:29:49 +02:00
|
|
|
|
2016-04-19 13:54:41 +02:00
|
|
|
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
void ValidateHostTemplate(const Dictionary::Ptr& value, const ValidationUtils& utils) override;
|
|
|
|
void ValidateServiceTemplate(const Dictionary::Ptr& value, const ValidationUtils& utils) override;
|
2016-04-19 13:54:41 +02:00
|
|
|
|
|
|
|
protected:
|
2018-01-04 05:12:56 +01:00
|
|
|
void OnConfigLoaded() override;
|
|
|
|
void Start(bool runtimeCreated) override;
|
|
|
|
void Stop(bool runtimeRemoved) override;
|
2016-04-19 13:54:41 +02:00
|
|
|
|
|
|
|
private:
|
2017-05-04 10:29:49 +02:00
|
|
|
WorkQueue m_WorkQueue;
|
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);
|
2016-06-07 14:35:16 +02:00
|
|
|
void SendMetric(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 */
|