10 releases

0.0.2-alpha.1 Oct 16, 2023
0.0.1-alpha.11 Aug 4, 2023
0.0.1-alpha.9 Jul 31, 2023

#1933 in Development tools

Download history 59/week @ 2023-12-22 55/week @ 2023-12-29 198/week @ 2024-01-05 257/week @ 2024-01-12 220/week @ 2024-01-19 351/week @ 2024-01-26 527/week @ 2024-02-02 129/week @ 2024-02-09 306/week @ 2024-02-16 257/week @ 2024-02-23 439/week @ 2024-03-01 307/week @ 2024-03-08 500/week @ 2024-03-15 418/week @ 2024-03-22 260/week @ 2024-03-29 560/week @ 2024-04-05

1,773 downloads per month
Used in 13 crates (5 directly)

MIT/Apache

8KB
110 lines

Project Forum Chat

License: MIT License: Apache-2.0

Core types for influxive crates. The main point of this crate is to expose the [MetricWriter] trait to be used by downstream influxive crates.

Example [Metric] type creation:

let _metric = influxive_core::Metric::new(std::time::SystemTime::now(), "my.name")
    .with_field("field.bool", true)
    .with_field("field.float", 3.14)
    .with_field("field.signed", -42)
    .with_field("field.unsigned", 42)
    .with_field("field.string", "string.value")
    .with_tag("tag.bool", true)
    .with_tag("tag.float", 3.14)
    .with_tag("tag.signed", -42)
    .with_tag("tag.unsigned", 42)
    .with_tag("tag.string", "string.value");

No runtime deps