prometheus-wire 0.1.0

A simple library to query and parse metrics from Prometheus exporters
Documentation
1
2
3
4
5
6
7
8
9
mod comment;
mod label;
mod line_parser;
mod metric_data;

pub use comment::{Comment, CommentType};
pub use label::LabelList;
pub use line_parser::{try_read_comment, try_read_sample};
pub use metric_data::SampleData;