faucet-sink-jsonl 1.3.2

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

//! # faucet-sink-jsonl
//!
//! JSON Lines file sink connector for the faucet-stream ecosystem.
//!
//! Writes `serde_json::Value` records to a file in [JSON Lines](https://jsonlines.org/)
//! format (one JSON object per line).

pub mod config;
pub(crate) mod probe;
pub mod sink;

pub use faucet_core::{FaucetError, Sink};

pub use config::JsonlSinkConfig;
pub use sink::JsonlSink;