feat(#2100): add hive-metric OTLP CLI for agent-emitted custom metrics

This commit is contained in:
damocles 2026-07-04 22:48:56 +02:00 committed by mara
commit 39fc088907
5 changed files with 246 additions and 0 deletions

15
hive-metric/Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "hive-metric"
version.workspace = true
edition.workspace = true
[[bin]]
name = "hive-metric"
path = "src/main.rs"
[dependencies]
anyhow.workspace = true
clap.workspace = true
reqwest.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["rt", "macros"] }