14 个版本
0.0.3-alpha.1 | 2024年6月5日 |
---|---|
0.0.2-alpha.1 | 2023年10月16日 |
0.0.1-alpha.11 | 2023年8月4日 |
0.0.1-alpha.9 | 2023年7月31日 |
#972 在 开发工具
2,128 每月下载次数
用于 5 个 crate (2 直接)
56KB
1K SLoC
以子进程运行 influxd。
示例
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")
);
依赖
~9–24MB
~345K SLoC