aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Daemon/GraphiteWriter.h
blob: 903385863e8e62e166b4d4ad96284b17611bd387 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#pragma once

#include <string>
#include <time.h>
#include <Poco/Net/StreamSocket.h>
#include <Poco/Net/SocketStream.h>
#include <Poco/Util/Application.h>
#include <Common/logger_useful.h>


/// Writes to Graphite in the following format
/// path value timestamp\n
/// path can be arbitrary nested. Elements are separated by '.'
/// Example: root_path.server_name.sub_path.key
class GraphiteWriter
{
public:
    GraphiteWriter(const std::string & config_name, const std::string & sub_path = "");

    template <typename T> using KeyValuePair = std::pair<std::string, T>;
    template <typename T> using KeyValueVector = std::vector<KeyValuePair<T>>;

    template <typename T> void write(const std::string & key, const T & value,
                                     time_t timestamp = 0, const std::string & custom_root_path = "")
    {
        writeImpl(KeyValuePair<T>{ key, value }, timestamp, custom_root_path);
    }

    template <typename T> void write(const KeyValueVector<T> & key_val_vec,
                                     time_t timestamp = 0, const std::string & custom_root_path = "")
    {
        writeImpl(key_val_vec, timestamp, custom_root_path);
    }

private:
    template <typename T>
    void writeImpl(const T & data, time_t timestamp, const std::string & custom_root_path)
    {
        if (!timestamp)
            timestamp = time(nullptr);

        try
        {
            Poco::Net::SocketAddress socket_address(host, port);
            Poco::Net::StreamSocket socket(socket_address);
            socket.setSendTimeout(Poco::Timespan(static_cast<Poco::Int64>(timeout * 1000000)));
            Poco::Net::SocketStream str(socket);

            out(str, data, timestamp, custom_root_path);
        }
        catch (const Poco::Exception & e)
        {
            LOG_WARNING(&Poco::Util::Application::instance().logger(), "Fail to write to Graphite {}:{}. e.what() = {}, e.message() = {}", host, port, e.what(), e.message());
        }
    }

    template <typename T>
    void out(std::ostream & os, const KeyValuePair<T> & key_val, time_t timestamp, const std::string & custom_root_path)
    {
        os << (custom_root_path.empty() ? root_path : custom_root_path) <<
            '.' << key_val.first << ' ' << key_val.second << ' ' << timestamp << '\n';
    }

    template <typename T>
    void out(std::ostream & os, const KeyValueVector<T> & key_val_vec, time_t timestamp, const std::string & custom_root_path)
    {
        for (const auto & key_val : key_val_vec)
            out(os, key_val, timestamp, custom_root_path);
    }

    std::string root_path;

    int port;
    std::string host;
    double timeout;
};