metriken-exposition 0.6.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.

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

#[cfg(all(feature = "serde", feature = "msgpack", feature = "parquet"))]
pub use convert::MsgpackToParquet;
#[cfg(feature = "parquet")]
pub use parquet::{ParquetOptions, ParquetSchema, ParquetWriter};
pub use snapshot::{Counter, Gauge, Histogram, Snapshot};
pub use snapshotter::{Snapshotter, SnapshotterBuilder};