fix: support gzip and zstd compression for OTLP export over gRPC (#11077)

Claude-Session: https://claude.ai/code/session_01RbLzVfFDZ9pjBGHSzCSrNZ

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ruben Fiszel
2026-09-11 08:01:54 +02:00
committed by GitHub
co-authored by Claude Opus 5
parent f915ed6a46
commit b156778da2
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -13670,6 +13670,7 @@ dependencies = [
"axum 0.8.9",
"base64 0.22.1",
"bytes",
"flate2",
"h2 0.4.19",
"http 1.5.0",
"http-body 1.1.0",
@@ -13689,6 +13690,7 @@ dependencies = [
"tower-layer",
"tower-service",
"tracing",
"zstd",
]
[[package]]
+1 -1
View File
@@ -701,7 +701,7 @@ async-stream = "^0"
opentelemetry = "0.30.0"
tracing-opentelemetry = "0.31.0"
opentelemetry_sdk = { version = "0.30.0", features = ["rt-tokio", "testing"] }
opentelemetry-otlp = { version = "0.30.0", features = ["grpc-tonic", "tls", "http-proto"] }
opentelemetry-otlp = { version = "0.30.0", features = ["grpc-tonic", "tls", "http-proto", "gzip-tonic", "zstd-tonic"] }
opentelemetry-appender-tracing = "0.30.0"
opentelemetry-semantic-conventions = { version = "0.30.0", features = ["semconv_experimental"] }
opentelemetry-proto = { version = "0.30.0", features = ["with-serde", "gen-tonic"] }