metrics-sqlite 0.2.2

Library for providing SQLite backend for metrics
Documentation
1
2
3
4
5
6
7
8
9
10
table! {
    metrics (id) {
        id -> BigInt,
        timestamp -> Double,
        key -> Text,
        value -> Double,
    }
}

// allow_tables_to_appear_in_same_query!(counters,);