1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
//! Metric type implementations.
pub mod counter;
pub mod exemplar;
pub mod family;
pub mod gauge;
pub mod histogram;
pub mod info;
/// A metric that is aware of its Open Metrics metric type.
pub trait TypedMetric {
const TYPE: MetricType = MetricType::Unknown;
}
#[derive(Clone, Copy, Debug)]
pub enum MetricType {
Counter,
Gauge,
Histogram,
Info,
Unknown,
// Not (yet) supported metric types.
//
// GaugeHistogram,
// StateSet,
// Summary
}