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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#pragma once
#include "common/admin_socket_client.h"
#include <map>
#include <string>
#include <vector>
#include <boost/asio.hpp>
#include <boost/json/object.hpp>
#include <filesystem>
#include <map>
#include <string>
#include <vector>
struct pstat {
unsigned long utime;
unsigned long stime;
unsigned long minflt;
unsigned long majflt;
unsigned long start_time;
int num_threads;
unsigned long vm_size;
int resident_size;
};
class MetricsBuilder;
class OrderedMetricsBuilder;
class UnorderedMetricsBuilder;
class Metric;
typedef std::map<std::string, std::string> labels_t;
class DaemonMetricCollector {
public:
void main();
std::string get_metrics();
labels_t get_extra_labels(std::string daemon_name);
private:
std::map<std::string, AdminSocketClient> clients;
std::string metrics;
std::mutex metrics_mutex;
std::unique_ptr<MetricsBuilder> builder;
void update_sockets();
void request_loop(boost::asio::steady_timer &timer);
void dump_asok_metrics();
void dump_asok_metric(boost::json::object perf_info,
boost::json::value perf_values, std::string name,
labels_t labels);
std::pair<labels_t, std::string> add_fixed_name_metrics(std::string metric_name);
void get_process_metrics(std::vector<std::pair<std::string, int>> daemon_pids);
std::string asok_request(AdminSocketClient &asok, std::string command, std::string daemon_name);
};
class Metric {
private:
struct metric_entry {
labels_t labels;
std::string value;
};
std::string name;
std::string mtype;
std::string description;
std::vector<metric_entry> entries;
public:
Metric(std::string name, std::string mtype, std::string description)
: name(name), mtype(mtype), description(description) {}
Metric(const Metric &) = default;
Metric() = default;
void add(labels_t labels, std::string value);
std::string dump();
};
class MetricsBuilder {
public:
virtual ~MetricsBuilder() = default;
virtual std::string dump() = 0;
virtual void add(std::string value, std::string name, std::string description,
std::string mtype, labels_t labels) = 0;
protected:
std::string out;
};
class OrderedMetricsBuilder : public MetricsBuilder {
private:
std::map<std::string, Metric> metrics;
public:
std::string dump();
void add(std::string value, std::string name, std::string description,
std::string mtype, labels_t labels);
};
class UnorderedMetricsBuilder : public MetricsBuilder {
public:
std::string dump();
void add(std::string value, std::string name, std::string description,
std::string mtype, labels_t labels);
};
DaemonMetricCollector &collector_instance();
|