vector/sinks/keep/
mod.rs

1//! The Keep [`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 the Keep service.
5
6mod config;
7mod encoder;
8mod request_builder;
9mod service;
10mod sink;