[][src]Struct prometheus::Histogram

pub struct Histogram { /* fields omitted */ }

A Metric counts individual observations from an event or sample stream in configurable buckets. Similar to a summary, it also provides a sum of observations and an observation count.

On the Prometheus server, quantiles can be calculated from a Histogram using the histogram_quantile function in the query language.

Note that Histograms, in contrast to Summaries, can be aggregated with the Prometheus query language (see the documentation for detailed procedures). However, Histograms require the user to pre-define suitable buckets, and they are in general less accurate. The Observe method of a Histogram has a very low performance overhead in comparison with the Observe method of a Summary.

Methods

impl Histogram
[src]

pub fn with_opts(opts: HistogramOpts) -> Result<Histogram>
[src]

with_opts creates a Histogram with the opts options.

impl Histogram
[src]

pub fn observe(&self, v: f64)
[src]

Add a single observation to the Histogram.

pub fn start_timer(&self) -> HistogramTimer
[src]

Return a HistogramTimer to track a duration.

pub fn local(&self) -> LocalHistogram
[src]

Return a LocalHistogram for single thread usage.

Trait Implementations

impl Collector for Histogram
[src]

impl Metric for Histogram
[src]

impl Clone for Histogram
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Histogram

impl Sync for Histogram

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]