1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Receivers are how metrics come into the agent.
//!
//! There are two paradigms for how agents collect metrics:
//!   - Push
//!   - Pull

pub mod push;
pub mod pull;

mod collector;

pub use self::collector::Collector;