5 releases (2 stable)

1.0.1 Jul 19, 2022
1.0.0 Mar 16, 2022
0.2.0 Dec 1, 2020
0.1.1 Jan 21, 2020
0.1.0 Nov 21, 2019

#144 in Profiling

Download history 38/week @ 2024-11-21 32/week @ 2024-11-28 39/week @ 2024-12-05 54/week @ 2024-12-12 6/week @ 2024-12-19 1/week @ 2024-12-26 13/week @ 2025-01-02 21/week @ 2025-01-09 19/week @ 2025-01-16 2/week @ 2025-01-23 38/week @ 2025-01-30 35/week @ 2025-02-06 292/week @ 2025-02-13 662/week @ 2025-02-20 555/week @ 2025-02-27 1950/week @ 2025-03-06

3,488 downloads per month
Used in 9 crates (4 directly)

Apache-2.0

46KB
979 lines

A general-purpose metrics library.

The design of the crate is based fairly closely off of the Dropwizard Metrics library from the Java ecosystem.

Examples

use witchcraft_metrics::{MetricRegistry, MetricId, Metric};
use std::time::Duration;

// A `MetricRegistry` stores metrics.
let registry = MetricRegistry::new();

// Metrics are identified by an ID, which consists of a name and set of "tags"
let yaks_shaved = registry.counter(MetricId::new("shavings").with_tag("animal", "yak"));
// You can also pass a string directly for metric IDs that don't have tags
let request_timer = registry.timer("server.requests");

// do some work and record some values.
for yak in find_some_yaks() {
    shave_yak(yak);
    yaks_shaved.inc();
}

// Grab a snapshot of the metrics currently registered and print their values:
for (id, metric) in &registry.metrics() {
    match metric {
        Metric::Counter(counter) => println!("{:?} is a counter with value {}", id, counter.count()),
        Metric::Timer(timer) => {
            let nanos = timer.snapshot().value(0.99);
            let duration = Duration::from_nanos(nanos as u64);
            println!("{:?} is a timer with 99th percentile {:?}", id, duration);
        }
        _ => {}
    }
}

Dependencies

~1.8–7MB
~40K SLoC