Type Alias Counter

Source
pub type Counter<T> = Counter<T>;
Expand description

A counter metric. Alias for opentelemetry::metrics::Counter<T>.

Counter metrics are used to record a value that can only increase.

Aliased Typeยง

struct Counter<T>(/* private fields */);