diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /src/exporter/DaemonMetricCollector.h | |
parent | Initial commit. (diff) | |
download | ceph-upstream/18.2.2.tar.xz ceph-upstream/18.2.2.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/exporter/DaemonMetricCollector.h')
-rw-r--r-- | src/exporter/DaemonMetricCollector.h | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/src/exporter/DaemonMetricCollector.h b/src/exporter/DaemonMetricCollector.h new file mode 100644 index 000000000..e906fb13a --- /dev/null +++ b/src/exporter/DaemonMetricCollector.h @@ -0,0 +1,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(); |