16 releases

0.0.5 Aug 12, 2025
0.0.4-alpha.1 Feb 19, 2025
0.0.3-alpha.1 Jun 5, 2024
0.0.2-alpha.1 Oct 16, 2023
0.0.1-alpha.9 Jul 31, 2023

#1299 in Debugging

Download history 475/week @ 2025-08-08 427/week @ 2025-08-15 290/week @ 2025-08-22 605/week @ 2025-08-29 432/week @ 2025-09-05 411/week @ 2025-09-12 531/week @ 2025-09-19 596/week @ 2025-09-26 575/week @ 2025-10-03 484/week @ 2025-10-10 438/week @ 2025-10-17 551/week @ 2025-10-24 621/week @ 2025-10-31 389/week @ 2025-11-07 713/week @ 2025-11-14 630/week @ 2025-11-21

2,465 downloads per month
Used in 3 crates (via influxive)

MIT/Apache

69KB
1.5K SLoC

Project Forum Chat

License: MIT License: Apache-2.0

Run influxd as a child process.

Example

use influxive_core::Metric;
use influxive_child_svc::*;

let tmp = tempfile::tempdir().unwrap();

let influxive = InfluxiveChildSvc::new(
    InfluxiveChildSvcConfig::default()
        .with_database_path(Some(tmp.path().to_owned())),
).await.unwrap();

influxive.write_metric(
    Metric::new(
        std::time::SystemTime::now(),
        "my.metric",
    )
    .with_field("value", 3.14)
    .with_tag("tag", "test-tag")
);

Dependencies

~9–29MB
~379K SLoC