faucet-source-mongodb 1.0.0

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

//! # faucet-source-mongodb
//!
//! MongoDB source connector for the faucet-stream ecosystem.
//!
//! Connects to a MongoDB instance, runs a `find()` query on a collection,
//! and returns all matching documents as `serde_json::Value` records.

pub mod config;
pub mod stream;

pub use faucet_core::{FaucetError, Source};

pub use config::MongoSourceConfig;
pub use stream::MongoSource;