dipstick 0.6.6

A fast and modular metrics library decoupling app instrumentation from reporting backend. Similar to popular logging frameworks, but with counters and timers. Can be configured for combined outputs (log + statsd), random sampling, local aggregation of metrics, recurrent background publication, etc.
Documentation
Templates
 
```rust,skt-run
extern crate dipstick;
use dipstick::*;

fn main() {{
    {}
}}
```

```rust,skt-fail
extern crate dipstick;
use dipstick::*;
use std::result::Result;

fn main() {{
    run().ok();
}}

fn run() -> Result<(), dipstick::error::Error> {{
    {}
    Ok(())
}}
```


```rust,skt-plain
{}
```