Rust Statsd
A client (and hopefully soon a server) implementation of statsd in rust.
Using the client library
Add the statsd package as a dependency in your Cargo.toml file:
[dependencies]
statsd = "0.1.0"
You can then get a client instance and start tracking metrics:
// Load the crate
extern crate statsd;
// Import the client object.
use Client;
// Get a client with the prefix of `myapp`. The host should be the
// IP:port of your statsd daemon.
let mut client = new.unwrap;
client.incr;