patagia-control/instrumentation/Cargo.toml

25 lines
875 B
TOML
Raw Normal View History

2024-12-16 18:46:14 +01:00
[package]
name = "instrumentation"
2025-01-18 12:15:59 +01:00
edition = "2024"
2024-12-16 18:46:14 +01:00
license = "MPL-2.0"
version.workspace = true
2024-12-16 18:46:14 +01:00
[dependencies]
anyhow.workspace = true
http.workspace = true
2024-12-16 18:46:14 +01:00
once_cell.workspace = true
2025-03-31 21:15:44 +02:00
opentelemetry-otlp = { version = "0.29.0", features = ["grpc-tonic", "gzip-tonic", "zstd-tonic", "tls", "tls-roots", "trace"] }
opentelemetry_sdk = { version = "0.29.0", features = ["metrics", "rt-tokio"] }
opentelemetry-semantic-conventions = "0.29.0"
opentelemetry-appender-tracing = { version = "0.29.1", features = ["log", "experimental_metadata_attributes"] }
opentelemetry-resource-detectors = { version = "0.8.0" }
opentelemetry = "0.29.1"
tonic = { version = "0.13.0", features = [ "channel", "tls-native-roots" ] }
tracing-opentelemetry = "0.30.0"
tracing-subscriber = { version = "0.3.19", default-features = false, features = [
"std",
"ansi",
"env-filter",
"fmt",
] }