rust-statsd icon indicating copy to clipboard operation
rust-statsd copied to clipboard

Statsd client implemented in Rust

Results 2 rust-statsd issues
Sort by recently updated
recently updated
newest added

Hey there, Thank you for writing this, awesome project! Curious, should there be support for tagging metrics? I could imagine something like this: ```rust client.incr("some.metric", vec!["service:api"]) ``` or maybe even...

enhancement

if data.len() + stat.len() + 1 > self.max_udp_size ^^^ wrong data should be _data ```/// Send data along the UDP socket. pub fn send(&mut self, client: &Client) { let mut...

bug