metrics-sqlite 0.6.0

Library for providing SQLite backend for metrics
Documentation
1
2
3
4
5
fn main() {
    let mut db = metrics_sqlite::MetricsDb::new("metrics.db").expect("Failed to open DB");
    db.export_to_csv("metrics.csv")
        .expect("Failed to export to CSV");
}