ddsketch/agent/mod.rs
1//! Agent-specific DDSketch implementation.
2//!
3//! This implementation matches the Datadog Agent's DDSketch for wire-compatibility.
4//! Configuration is fixed at compile time for optimal performance.
5
6mod bin;
7mod bucket;
8mod config;
9mod sketch;
10
11pub use bin::Bin;
12pub use bucket::Bucket;
13pub use sketch::DDSketch;