vector/sinks/http/mod.rs
1//! The HTTP [`vector_lib::sink::VectorSink`].
2//!
3//! This module contains the [`vector_lib::sink::VectorSink`] instance that is responsible for
4//! taking a stream of [`vector_lib::event::Event`]s and forwarding them to an HTTP server.
5
6mod batch;
7pub mod config;
8mod encoder;
9mod request_builder;
10mod service;
11mod sink;
12
13#[cfg(test)]
14mod tests;