A one-stop shop metrics library for Rust applications with lots of features,
minimal impact on applications and a choice of output to downstream systems.
Dipstick is a toolkit to help all sorts of application collect and send out metrics. As such, it needs a bit of set up to suit one's needs. Skimming through the handbook and many examples should help you get an idea of the possible configurations.
In short, dipstick-enabled apps can:
For convenience, dipstick builds on stable Rust with minimal, feature-gated dependencies. Performance, safety and ergonomy are also prime concerns.
Dipstick's focus is on metrics collection (input) and forwarding (output). Although it will happily aggregate base statistics, for the sake of simplicity and performance Dipstick will not - plot graphs - send alerts - track histograms
These are all best done by downstream timeseries visualization and monitoring tools.
Here's a basic aggregating & auto-publish counter metric:
```rust extern crate dipstick; use dipstick::*;
fn main() { let bucket = AtomicBucket::new(); bucket.drain(Stream::tostdout()); bucket.flushevery(std::time::Duration::fromsecs(3)); let counter = bucket.counter("countera"); counter.count(8); } ```
Persistent apps wanting to declare static metrics will prefer using the metrics!
macro:
```rust extern crate dipstick; use dipstick::*;
metrics! { METRICS = "myapp" => { pub COUNTER: Counter = "mycounter"; } }
fn main() { METRICS.target(Graphite::send_to("localhost:2003").expect("connected").metrics()); COUNTER.count(32); } ```
For sample applications see the examples. For documentation see the handbook.
To use Dipstick in your project, add the following line to your Cargo.toml
in the [dependencies]
section:
toml
dipstick = "0.7.2"
Dipstick is licensed under the terms of the Apache 2.0 and MIT license.