Skip to main content

fast_telemetry/
temporality.rs

1//! Export temporality for metrics backends.
2
3/// Aggregation temporality used during export.
4#[derive(Copy, Clone, Debug, Eq, PartialEq)]
5pub enum Temporality {
6    /// Export totals since process start.
7    Cumulative,
8    /// Export values for the current export window.
9    Delta,
10}