rlink 0.6.16

High performance Stream Processing Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Records metrics in the Prometheus exposition format.
#![deny(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg), deny(broken_intra_doc_links))]
mod common;
pub use self::common::Matcher;

mod distribution;

mod builder;
pub use self::builder::PrometheusBuilder;

mod recorder;
pub use self::recorder::{PrometheusHandle, PrometheusRecorder};