Trait opentelemetry::sdk::export::metrics::Histogram[][src]

pub trait Histogram: Sum + Count {
    fn histogram(&self) -> Result<Buckets>;
}
This is supported on crate feature metrics only.
Expand description

Histogram returns the count of events in pre-determined buckets.

Required methods

Buckets for this histogram.

Implementors