vector/sinks/honeycomb/mod.rs
1//! The Honeycomb [`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 Honeycomb service.
5
6mod config;
7mod encoder;
8mod request_builder;
9mod service;
10mod sink;
11
12#[cfg(test)]
13mod tests;