vector/sinks/greptimedb/logs/mod.rs
1//! `GreptimeDB` log sink for vector.
2//!
3//! This sink writes Vector's log data into
4//! [GreptimeDB](https://github.com/greptimeteam/greptimedb), a cloud-native
5//! time-series database. It uses GreptimeDB's logs http API
6
7mod config;
8mod http_request_builder;
9#[cfg(all(test, feature = "greptimedb-integration-tests"))]
10mod integration_tests;
11mod sink;