vector/sinks/azure_logs_ingestion/mod.rs
1//! The Azure Logs Ingestion [`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`] instances and forwarding them to the Azure
5//! Logs Ingestion API.
6
7mod config;
8mod service;
9mod sink;
10#[cfg(test)]
11mod tests;
12
13pub use config::AzureLogsIngestionConfig;