Type Alias GaugeU64

Source
pub type GaugeU64 = Gauge<u64>;
Expand description

A gauge metric with a u64 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 GaugeU64(/* private fields */);