diff --git a/src/sinks/prometheus/mod.rs b/src/sinks/prometheus/mod.rs index 2e2ddc0e00694..c937570f22b1b 100644 --- a/src/sinks/prometheus/mod.rs +++ b/src/sinks/prometheus/mod.rs @@ -3,8 +3,8 @@ use vector_lib::event::Metric; use vector_lib::sensitive_string::SensitiveString; mod collector; -pub(crate) mod exporter; -pub(crate) mod remote_write; +pub mod exporter; +pub mod remote_write; use vector_lib::configurable::configurable_component; diff --git a/src/sinks/prometheus/remote_write/mod.rs b/src/sinks/prometheus/remote_write/mod.rs index 3f3ced7a1bb18..95ebe38f40739 100644 --- a/src/sinks/prometheus/remote_write/mod.rs +++ b/src/sinks/prometheus/remote_write/mod.rs @@ -1,6 +1,6 @@ -//! The Prometheus Remote Write [`vector_core::sink::VectorSink`]. -//! Contains the [`vector_core::sink::VectorSink`] instance that is responsible -//! for taking a stream of [`vector_core::event::Event`] and forwarding +//! The Prometheus Remote Write sink. +//! Contains the [`VectorSink`] instance that is responsible +//! for taking a stream of [`Event`] and forwarding //! them to a server via the [Prometheus Remote Write protocol][remote_write]. //! //! [remote_write]: https://prometheus.io/docs/concepts/remote_write_spec/