prometrics 0.1.13

Client library for exposing prometheus metrics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use metric::Metric;

/// This trait allows for collecting metrics.
pub trait Collect {
    /// An iterator over collected metrics.
    type Metrics: Iterator<Item = Metric>;

    /// Collects metrics.
    ///
    /// If there are no more metrics to collect, this method will return `None`.
    fn collect(&mut self) -> Option<Self::Metrics>;
}