**Router Version:** v2.10.0 **Description:** The router receives traceparent headers from clients and records them as span attributes, but does not use them as the parent context for traces. This results in the router creating new traces instead of continuing existing ones, breaking distributed tracing. The issue does NOT occur when running with --dev flag. **Configuration:** ```yaml telemetry: instrumentation: spans: mode: spec_compliant exporters: tracing: experimental_response_trace_id: enabled: true header_name: "apollo-trace-id" propagation: trace_context: true baggage: false common: parent_based_sampler: true sampler: always_on resource: "service.name": "prod-apollo-router" "environment.name": "prod" otlp: enabled: true endpoint: https://otlp.nr-data.net:4317 protocol: grpc grpc: metadata: api-key: <redacted> ``` **Headers configuration:** ```yaml headers: all: request: - propagate: matching: .* ``` **Observed Behavior:** Router receives traceparent: 00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01 Router records it as span attribute: "traceparent": "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01" Router generates NEW trace ID instead of using 4bf92f3577b34da6a3ce929d0e0e4736 Router does NOT propagate traceparent to subgraphs Subgraphs (Spring Boot with OpenTelemetry + New Relic) receive no trace context **Expected Behavior:** Router should use incoming traceparent as parent context Router should continue the trace with the same trace ID Router should propagate trace context to subgraphs apollo-trace-id response header should match incoming trace ID **Workaround:** Running with --dev flag makes trace propagation work correctly. **Environment:** Deployment: Kubernetes (EKS) Router image: ghcr.io/apollographql/router:v2.10.0 Subgraphs: Spring Boot with OpenTelemetry and New Relic agent