]> git.sesse.net Git - nageru/blobdiff - metrics.h
Add exported metrics for all the latency measurements.
[nageru] / metrics.h
index 2a19e259cc32bf4df11c1eb779d6339b16382fd9..a8156587a5f2484da831eda01af26cc0c4742454 100644 (file)
--- a/metrics.h
+++ b/metrics.h
@@ -7,16 +7,20 @@
 // which makes it quite unwieldy. Thus, we'll package our own for the time being.
 
 #include <atomic>
+#include <map>
+#include <memory>
 #include <mutex>
 #include <string>
-#include <map>
 #include <vector>
 
+class Histogram;
+
 class Metrics {
 public:
        enum Type {
                TYPE_COUNTER,
                TYPE_GAUGE,
+               TYPE_HISTOGRAM,  // Internal use only.
        };
 
        void add(const std::string &name, std::atomic<int64_t> *location, Type type = TYPE_COUNTER)
@@ -29,11 +33,14 @@ public:
                add(name, {}, location, type);
        }
 
+       void add(const std::string &name, Histogram *location)
+       {
+               add(name, {}, location);
+       }
+
        void add(const std::string &name, const std::vector<std::pair<std::string, std::string>> &labels, std::atomic<int64_t> *location, Type type = TYPE_COUNTER);
        void add(const std::string &name, const std::vector<std::pair<std::string, std::string>> &labels, std::atomic<double> *location, Type type = TYPE_COUNTER);
-
-       // Only integer histogram, ie. keys are 0..(N-1).
-       void add_histogram(const std::string &name, const std::vector<std::pair<std::string, std::string>> &labels, std::atomic<int64_t> *location, size_t num_elements);
+       void add(const std::string &name, const std::vector<std::pair<std::string, std::string>> &labels, Histogram *location);
 
        std::string serialize() const;
 
@@ -41,6 +48,7 @@ private:
        enum DataType {
                DATA_TYPE_INT64,
                DATA_TYPE_DOUBLE,
+               DATA_TYPE_HISTOGRAM,
        };
 
        struct Metric {
@@ -50,23 +58,38 @@ private:
                union {
                        std::atomic<int64_t> *location_int64;
                        std::atomic<double> *location_double;
+                       Histogram *location_histogram;
                };
        };
 
-       // TODO: This needs to be more general.
-       struct Histogram {
-               std::string name;
-               std::vector<std::pair<std::string, std::string>> labels;
-               std::atomic<int64_t> *location_int64;  // First bucket.
-               size_t num_elements;
-       };
-
        mutable std::mutex mu;
        std::map<std::string, Type> types;
        std::vector<Metric> metrics;
        std::vector<Histogram> histograms;
 };
 
+class Histogram {
+public:
+       void init(const std::vector<double> &bucket_vals);
+       void init_uniform(size_t num_buckets);  // Sets up buckets 0..(N-1).
+       void init_geometric(double min, double max, size_t num_buckets);
+       void count_event(double val);
+       std::string serialize(const std::string &name, const std::vector<std::pair<std::string, std::string>> &labels) const;
+
+private:
+       // Bucket <i> counts number of events where val[i - 1] < x <= val[i].
+       // The end histogram ends up being made into a cumulative one,
+       // but that's not how we store it here.
+       struct Bucket {
+               double val;
+               std::atomic<int64_t> count{0};
+       };
+       std::unique_ptr<Bucket[]> buckets;
+       size_t num_buckets;
+       std::atomic<double> sum{0.0};
+       std::atomic<int64_t> count_after_last_bucket{0};
+};
+
 extern Metrics global_metrics;
 
 #endif  // !defined(_METRICS_H)