datadog_statsd/lib.rs
1//! A Rust implementation of DogStatsD server & client.
2//!
3//! The statsd protocol consistents of plain-text single-packet messages sent
4//! over UDP, containing not much more than a key and (possibly sampled) value.
5//!
6//! Due to the inherent design of the system, there is no guarantee that metrics
7//! will be received by the server, and there is (by design) no indication of
8//! this.
9//!
10pub mod client;
11pub use client::Client;