This commit is contained in:
Oliver Atkinson
2024-10-10 12:49:19 -06:00
commit aeb2801b56
6 changed files with 2462 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "demo"
version = "0.1.0"
edition = "2021"
[dependencies]
opentelemetry = { version = "0.24.0", features = ["metrics", "otel_unstable"] }
opentelemetry-prometheus = { version = "0.17.0", features = ["prometheus-encoding"] }
# opentelemetry-stdout = { version = "0.26.0", features = ["metrics"] }
opentelemetry_sdk = { version = "0.24.0", features = ["metrics", "rt-tokio"] }
prometheus = "0.13.4"
rocket = "0.5.1"
tokio = { version = "1.40.0", features = ["full"] }
tracing = "0.1.40"
tracing-loki = "0.2.5"
tracing-subscriber = "0.3.18"
url = "2.5.2"