vector/sinks/azure_monitor_logs/mod.rs
1//! The Azure Monitor Logs [`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//! Monitor Logs service.
6
7mod config;
8mod service;
9mod sink;
10#[cfg(test)]
11mod tests;
12
13pub use config::AzureMonitorLogsConfig;