Trait cadence::Histogrammed[][src]

pub trait Histogrammed {
    fn histogram_with_tags<'a>(
        &'a self,
        key: &'a str,
        value: u64
    ) -> MetricBuilder<Histogram>; fn histogram(&self, key: &str, value: u64) -> MetricResult<Histogram> { ... } }

Trait for recording histogram values.

Histogram values are positive values that can represent anything, whose statistical distribution is calculated by the server. The values can be timings, amount of some resource consumed, size of HTTP responses in some application, etc. Histograms can be thought of as a more general form of timers.

See the Statsd spec for more information.

Note that tags and histograms are a Datadog extension to Statsd and may not be supported by your server.

Required Methods

Record a single histogram value with the given key and return a MetricBuilder that can be used to add tags to the metric.

Provided Methods

Record a single histogram value with the given key

Implementors