opentelemetry_prometheus_text_exporter/
lib.rs

1#![doc = include_str!("../README.md")]
2
3#[deny(
4    clippy::all,
5    clippy::pedantic,
6    rustdoc::broken_intra_doc_links,
7    missing_docs
8)]
9#[allow(
10    clippy::struct_excessive_bools,
11    reason = "The configuration struct has many boolean fields, this is intentional"
12)]
13pub(crate) mod exporter;
14pub(crate) mod serialize;
15
16pub use self::exporter::{ExporterBuilder, PrometheusExporter};