fast-telemetry 0.1.1

High-performance, cache-friendly telemetry primitives and export formats for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Export temporality for metrics backends.

/// Aggregation temporality used during export.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Temporality {
    /// Export totals since process start.
    Cumulative,
    /// Export values for the current export window.
    Delta,
}