Type Alias GaugeF64

Source
pub type GaugeF64 = Gauge<f64>;
Expand description

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