Type Alias GaugeI64

Source
pub type GaugeI64 = Gauge<i64>;
Expand description

A gauge metric with a i64 value.

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 GaugeI64(/* private fields */);