faucet-sink-http 0.2.0

HTTP POST sink connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # 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::{FaucetError, Sink};

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