4 releases

new 0.1.3 Dec 12, 2024
0.1.2 Dec 6, 2024
0.1.1 Jan 18, 2024
0.1.0 Jan 17, 2024

#297 in Value formatting

Download history 263/week @ 2024-08-26 184/week @ 2024-09-02 648/week @ 2024-09-09 243/week @ 2024-09-16 708/week @ 2024-09-23 495/week @ 2024-09-30 350/week @ 2024-10-07 211/week @ 2024-10-14 515/week @ 2024-10-21 311/week @ 2024-10-28 326/week @ 2024-11-04 139/week @ 2024-11-11 119/week @ 2024-11-18 203/week @ 2024-11-25 463/week @ 2024-12-02 445/week @ 2024-12-09

1,232 downloads per month
Used in 5 crates (via metriken)

Apache-2.0

46KB
877 lines

metriken

Easily registered distributed metrics.

metriken allows you to easily declare static metrics throughout your codebase. Then, when you want to expose those metrics, you can access them all in one place.

use metriken::{metric, Counter, Gauge, Value};

/// A counter metric named "<crate name>::COUNTER"
#[metric]
static COUNTER: Counter = Counter::new();

/// A gauge metric named "my.metric"
#[metric(name = "my.metric")]
static GAUGE: Gauge = Gauge::new();

fn main() {
    COUNTER.increment();

    for metric in &metriken::metrics() {
        let name = metric.name();

        match metric.value() {
            Some(Value::Counter(val)) => println!("{name}: {val}"),
            Some(Value::Gauge(val)) => println!("{name}: {val}"),
            _ => println!("{name}: <custom>")
        }
    }
}

Code updating the metrics can always access them without needing to go through any indirections. (It just means accessing a static!). Using linkme, the metrics are all gathered into a single global array that can then be used to read all of them and expose them.

Dependencies

~1–6MB
~34K SLoC