proq 0.1.0

Idiomatic Async Prometheus Query (PromQL) Client for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
//!
//! All value types which enables us to interpret various parts of Prometheus.

pub mod prometheus_types {
    //!
    //! Constants that helps Proq to interpret Prometheus return types.
    pub const PROQ_INFINITY: &str = "Inf";
    pub const PROQ_NEGATIVE_INFINITY: &str = "-Inf";
    pub const PROQ_NAN: &str = "NaN";
}