mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-12 04:36:29 -07:00
125 lines
3.4 KiB
C++
125 lines
3.4 KiB
C++
#pragma once
|
|
|
|
#include "prometheus/atomic_floating.h"
|
|
#include "prometheus/metric.h"
|
|
#include "prometheus/family.h"
|
|
|
|
#include "prometheus/builder.h"
|
|
|
|
#include <atomic>
|
|
|
|
namespace prometheus {
|
|
|
|
/// \brief A counter metric to represent a monotonically increasing value.
|
|
///
|
|
/// This class represents the metric type counter:
|
|
/// https://prometheus.io/docs/concepts/metric_types/#counter
|
|
///
|
|
/// The value of the counter can only increase. Example of counters are:
|
|
/// - the number of requests served
|
|
/// - tasks completed
|
|
/// - errors
|
|
///
|
|
/// Do not use a counter to expose a value that can decrease - instead use a
|
|
/// Gauge.
|
|
///
|
|
/// The class is thread-safe. No concurrent call to any API of this type causes
|
|
/// a data race.
|
|
|
|
#include <stdint.h>
|
|
|
|
#if UINTPTR_MAX == 0xffFFffFF
|
|
// 32-bit platform
|
|
template <typename Value_ = uint32_t>
|
|
#elif UINTPTR_MAX == 0xffFFffFFffFFffFF
|
|
// 64-bit platform
|
|
template <typename Value_ = uint64_t>
|
|
#else
|
|
#error Unknown platform - does not look either like 32-bit or 64-bit
|
|
#endif
|
|
class Counter : public Metric {
|
|
|
|
std::atomic<Value_> value{ 0 };
|
|
|
|
public:
|
|
|
|
using Value = Value_;
|
|
using Family = CustomFamily<Counter<Value>>;
|
|
|
|
static const Metric::Type static_type = Metric::Type::Counter;
|
|
|
|
Counter() : Metric (Metric::Type::Counter) {} ///< \brief Create a counter that starts at 0.
|
|
Counter(const Counter<Value_> &rhs) : Metric(static_type), value{rhs.value.load()} {}
|
|
|
|
// original API
|
|
|
|
void Increment() { ///< \brief Increment the counter by 1.
|
|
++value;
|
|
}
|
|
|
|
void Increment(const Value& val) { ///< \brief Increment the counter by a given amount. The counter will not change if the given amount is negative.
|
|
if (val > 0)
|
|
value += val;
|
|
}
|
|
|
|
const Value Get() const { ///< \brief Get the current value of the counter.
|
|
return value;
|
|
}
|
|
|
|
virtual ClientMetric Collect() const { ///< /// \brief Get the current value of the counter. Collect is called by the Registry when collecting metrics.
|
|
ClientMetric metric;
|
|
metric.counter.value = static_cast<double>(value);
|
|
return metric;
|
|
}
|
|
|
|
// new API
|
|
|
|
Counter& operator ++() {
|
|
++value;
|
|
return *this;
|
|
}
|
|
|
|
Counter& operator++ (int) {
|
|
++value;
|
|
return *this;
|
|
}
|
|
|
|
Counter& operator += (const Value& val) {
|
|
value += val;
|
|
return *this;
|
|
}
|
|
|
|
};
|
|
|
|
/// \brief Return a builder to configure and register a Counter metric.
|
|
///
|
|
/// @copydetails Family<>::Family()
|
|
///
|
|
/// Example usage:
|
|
///
|
|
/// \code
|
|
/// auto registry = std::make_shared<Registry>();
|
|
/// auto& counter_family = prometheus::BuildCounter()
|
|
/// .Name("some_name")
|
|
/// .Help("Additional description.")
|
|
/// .Labels({{"key", "value"}})
|
|
/// .Register(*registry);
|
|
///
|
|
/// ...
|
|
/// \endcode
|
|
///
|
|
/// \return An object of unspecified type T, i.e., an implementation detail
|
|
/// except that it has the following members:
|
|
///
|
|
/// - Name(const std::string&) to set the metric name,
|
|
/// - Help(const std::string&) to set an additional description.
|
|
/// - Label(const std::map<std::string, std::string>&) to assign a set of
|
|
/// key-value pairs (= labels) to the metric.
|
|
///
|
|
/// To finish the configuration of the Counter metric, register it with
|
|
/// Register(Registry&).
|
|
using BuildCounter = Builder<Counter<double>>;
|
|
|
|
|
|
} // namespace prometheus
|