faucet_sink_http/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! # faucet-sink-http
4//!
5//! An HTTP POST sink connector that sends records to an HTTP endpoint,
6//! either individually or as a JSON array batch.
7
8pub mod config;
9pub mod serde_helpers;
10pub mod sink;
11
12pub use faucet_core::{AuthSpec, FaucetError, SharedAuthProvider, Sink};
13
14pub use config::{HttpBatchMode, HttpSinkAuth, HttpSinkConfig};
15pub use sink::HttpSink;