metrics_distributor 0.3.3

Ingest logs and forward aggregated data to APIs/services.
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate nom;

extern crate chrono;
extern crate hyper;
extern crate iron;
extern crate regex;
extern crate rustc_serialize;

pub mod collectors;
pub mod forwarders;
pub mod parsers;

/// Types representing collected and aggregated metrics.
pub mod metrics;
/// Stores actually record collected metrics.
pub mod store;

pub use store::*;