metriken-exposition 0.2.0

Exposition for metriken metrics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Exposition of Metriken metrics
//!
//! Provides a standardized struct for a snapshot of the metric readings as well
//! as a way of producing the snapshots.

pub use histogram::Snapshot as HistogramSnapshot;

#[cfg(feature = "parquet")]
mod parquet;
mod snapshot;
mod snapshotter;
#[cfg(all(feature = "serde", feature = "msgpack", feature = "parquet"))]
pub mod util;

#[cfg(feature = "parquet")]
pub use parquet::{ParquetOptions, ParquetSchema, ParquetWriter};
pub use snapshot::Snapshot;
pub use snapshotter::{Snapshotter, SnapshotterBuilder};