pub type Counter<T> = Counter<T>;
A counter metric. Alias for opentelemetry::metrics::Counter<T>.
opentelemetry::metrics::Counter<T>
Counter metrics are used to record a value that can only increase.
struct Counter<T>(/* private fields */);