Gauge
public class Gauge : Recorder
A gauge is a metric that represents a single numerical value that can arbitrarily go up and down.
Gauges are typically used for measured values like temperatures or current memory usage, but also “counts” that can go up and down, like the number of active threads.
Gauges are modeled as Recorder
with a sample size of 1 and that does not perform any aggregation.
-
Create a new
Gauge
.Declaration
Swift
public convenience init(label: String, dimensions: [(String, String)] = [])
Parameters
label
The label for the
Gauge
.dimensions
The dimensions for the
Gauge
.