pub type Gauge<T> = Gauge<T>;
Expand description
A gauge metric. Alias for opentelemetry::metrics::Gauge<T>
.
Gauge metrics are used to record a value at the current time, and are not
aggregated. If you need to record a value that can be aggregated, use a
Counter
or UpDownCounter
instead.
Aliased Typeยง
struct Gauge<T>(/* private fields */);