Update to opentelemetry 0.19.0 (#127)

This commit is contained in:
tottoto
2023-05-27 20:02:18 +09:00
committed by GitHub
parent 455603c1a2
commit bec20d5646
2 changed files with 177 additions and 255 deletions

View File

@@ -30,13 +30,13 @@ tokio-stream = "0.1"
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
# Implements the types defined in the OTel spec
opentelemetry = { version = "0.17.0", optional = true }
opentelemetry = { version = "0.19.0", optional = true }
# Integration between the tracing crate and the opentelemetry crate
tracing-opentelemetry = { version = "0.17.2", optional = true }
tracing-opentelemetry = { version = "0.19.0", optional = true }
# Provides a "propagator" to pass along an XrayId across services
opentelemetry-aws = { version = "0.5.0", optional = true }
opentelemetry-aws = { version = "0.7.0", optional = true }
# Allows you to send data to the OTel collector
opentelemetry-otlp = { version = "0.10.0", optional = true }
opentelemetry-otlp = { version = "0.12.0", optional = true }
[dev-dependencies]
# Enable test-utilities in dev mode only. This is mostly for tests.