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

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

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

Required methods

pub fn histogram(&self) -> Result<Buckets>[src]

Buckets for this histogram.

Loading content...

Implementors

impl Histogram for HistogramAggregator[src]

Loading content...