-
Hello 👋 I'm trying to auto-instrument my spring boot application with the java agent but unfortunately I cannot manage to obtain a working configuration for context propagation. When I call my API at This is how I run my application:
And every time I have the following error in the logs:
I've tested it with the javaagent v1.6.2 and v1.5.3. Any idea on how I may debug my issue here? 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
First, can you share a minimal reproducible test case for the error? Second, why do you expect to have |
Beta Was this translation helpful? Give feedback.
First, can you share a minimal reproducible test case for the error?
Second, why do you expect to have
traceparent
header in the response? That header is used to propagate span context with outgoing requests. When you call a service, a span is created to track the processing of that request and that span ends when request processing finishes. There is no span context to propagate back with the response.