faucet-sink-http 1.0.1

HTTP POST sink connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-sink-http
//!
//! An HTTP POST sink connector that sends records to an HTTP endpoint,
//! either individually or as a JSON array batch.

pub mod config;
pub mod serde_helpers;
pub mod sink;

pub use faucet_core::{AuthSpec, FaucetError, SharedAuthProvider, Sink};

pub use config::{HttpBatchMode, HttpSinkAuth, HttpSinkConfig};
pub use sink::HttpSink;