Struct prometheus::Histogram
source · [−]pub struct Histogram { /* private fields */ }
Expand description
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 prometheus documentation for
detailed procedures). However, Histograms require the user to pre-define
suitable buckets, (see linear_buckets
and exponential_buckets
for
some helper provided here) 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.
Implementations
sourceimpl Histogram
impl Histogram
sourcepub fn start_timer(&self) -> HistogramTimer
pub fn start_timer(&self) -> HistogramTimer
Return a HistogramTimer
to track a duration.
sourcepub fn observe_closure_duration<F, T>(&self, f: F) -> T where
F: FnOnce() -> T,
pub fn observe_closure_duration<F, T>(&self, f: F) -> T where
F: FnOnce() -> T,
Observe execution time of a closure, in second.
sourcepub fn local(&self) -> LocalHistogram
pub fn local(&self) -> LocalHistogram
Return a LocalHistogram
for single thread usage.
sourcepub fn get_sample_sum(&self) -> f64
pub fn get_sample_sum(&self) -> f64
Return accumulated sum of all samples.
sourcepub fn get_sample_count(&self) -> u64
pub fn get_sample_count(&self) -> u64
Return count of all samples.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Histogram
impl Send for Histogram
impl Sync for Histogram
impl Unpin for Histogram
impl UnwindSafe for Histogram
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more