An extensible Statsd client for Rust!
MetricSink
trait.To make use of Cadence in your project, add it as a dependency.
toml
[dependencies]
cadence = "x.y.z"
Typical usage of Cadence is shown below:
``` rust // Import the client use cadence::{ StatsdClient, UdpMetricSink };
// Create client that will write to the given host over UDP.
//
// Note that you'll probably want to actually handle any errors creating the client
// when you use it for real in your application. We're just using .unwrap() here
// since this is an example!
let host = ("metrics.example.com", 8125);
let client = StatsdClient::
// Emit metrics! client.incr("some.counter"); client.time("some.methodCall", 42); client.meter("some.value", 5); ```
Documentation is available at http://tshlabs.github.io/cadence/
The source code is available on GitHub at https://github.com/tshlabs/cadence
Release notes for Cadence can be found in the CHANGES.md file.