From 00c4b09440c57b4fb5a8bc3453f29e5fae84caa6 Mon Sep 17 00:00:00 2001 From: Brian Marks Date: Fri, 12 Jun 2026 17:16:24 -0400 Subject: [PATCH] test(otel): exercise http/protobuf in APM_TRACING_OTLP scenario Sets OTEL_EXPORTER_OTLP_TRACES_PROTOCOL=http/protobuf on the APM_TRACING_OTLP scenario so Test_Otel_Tracing_OTLP covers the OTLP HTTP/protobuf export path. The test already handles both JSON and protobuf content-types. Co-Authored-By: Claude Opus 4.8 --- utils/_context/_scenarios/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/_context/_scenarios/__init__.py b/utils/_context/_scenarios/__init__.py index 2a0883d099a..ca9ffdaaea7 100644 --- a/utils/_context/_scenarios/__init__.py +++ b/utils/_context/_scenarios/__init__.py @@ -744,6 +744,7 @@ class _Scenarios: "OTEL_TRACES_EXPORTER": "otlp", "OTEL_EXPORTER_OTLP_TRACES_ENDPOINT": f"http://proxy:{ProxyPorts.open_telemetry_weblog}/v1/traces", "OTEL_EXPORTER_OTLP_TRACES_HEADERS": "dd-protocol=otlp,dd-otlp-path=agent", + "OTEL_EXPORTER_OTLP_TRACES_PROTOCOL": "http/protobuf", "DD_TRACE_OTEL_ENABLED": "true", }, backend_interface_timeout=5,