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