#text-format #prometheus #exposition #metrics #print #label #scrape

prom_text_format_parser

A crate to parse and print Prometheus exposition text format

1 unstable release

0.1.0 Dec 28, 2023

#7 in #exposition

Download history 3/week @ 2024-11-15 134/week @ 2024-12-06 43/week @ 2024-12-13 1/week @ 2024-12-20 29/week @ 2025-01-03 80/week @ 2025-01-10 246/week @ 2025-01-17 132/week @ 2025-01-24 157/week @ 2025-01-31 87/week @ 2025-02-07 81/week @ 2025-02-14

386 downloads per month

MIT/Apache

56KB
1.5K SLoC

GitHub Workflow Status (with event) docs.rs Crates.io Codecov Crates.io

This is a parser and printer for the Prometheus exposition text format.

See here for a detailed description of the format.

Usage example:

    let path = std::env::args().nth(1).expect("A path to scrape text");
    let text = std::fs::read_to_string(path).expect("file read");
    let mut scrape = Scrape::parse(&text).expect("valid scrape");

    // Add a label to all metrics
    scrape.add_label("source", "invalid");
    // Remove a label from all metrics
    scrape.remove_label("source", "invalid");

    // format the scrape in the Prometheus exposition text format
    let rendered = format!("{scrape}");
    assert_eq!(text, rendered);

Dependencies

~1.2–1.7MB
~43K SLoC