Expand description
Metrics collectors.
Type Aliases§
- Counter
- A counter metric. Alias for
opentelemetry::metrics::Counter<T>
. - Counter
F64 - A counter metric with a
f64
value. - Counter
U64 - A counter metric with a
u64
value. - Gauge
- 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 aCounter
orUpDownCounter
instead. - Gauge
F64 - A gauge metric with a
f64
value. - Gauge
I64 - A gauge metric with a
i64
value. - Gauge
U64 - A gauge metric with a
u64
value. - Histogram
- A histogram metric. Alias for
opentelemetry::metrics::Histogram<T>
. - Histogram
F64 - A histogram metric with a
f64
value. - Histogram
U64 - A histogram metric with a
u64
value. - UpDown
Counter - A updown counter metric. Alias for
opentelemetry::metrics::UpDownCounter<T>
. - UpDown
Counter I64 - A updown counter metric with a
i64
value. - UpDown
Counter F64 - A updown counter metric with a
f64
value.
Structs§
- Collector
- A collector is a wrapper around a metric with some attributes.