Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: pub prometheus sink configs #19540

Merged
merged 4 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sinks/prometheus/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
6 changes: 3 additions & 3 deletions src/sinks/prometheus/remote_write/mod.rs
Original file line number Diff line number Diff line change
@@ -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/
Expand Down
Loading