Prometheus Client Library for Modern C++
Loading...
Searching...
No Matches
metric_type.h
1#pragma once
2
3namespace prometheus {
4
5enum class MetricType {
7 Gauge,
9 Untyped,
11};
12
13} // namespace prometheus
A counter metric to represent a monotonically increasing value.
Definition counter.h:26
A gauge metric to represent a value that can arbitrarily go up and down.
Definition gauge.h:24
A histogram metric to represent aggregatable distributions of events.
Definition histogram.h:31
A summary metric samples observations over a sliding window of time.
Definition summary.h:41