SpringBoot Server Spans do not follow OTEL semantic convensions? #14185
Unanswered
ross-paypay
asked this question in
Q&A
Replies: 1 comment
-
I'd guess that spans from |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In my springboot application (instrumented with the java agent), I see 2
Server
spans for each request.io.opentelemetry.tomcat-10.0
with a span name likeGET /v1/foo
org.springframework.boot
with a span name likehttp get /v1/foo
The Tomcat span appears to be properly following OTEL semantic conventions, however the springboot generated span does not.
I have tried to disable the springboot instrumentation but doing so also affects the tomcat span information resulting in the span losing information (i.e. the span name becomes
GET /**
)I was wondering if this is expected?
Is there any way to configure the java agent to only emit a single
Server
span that adheres to OTEL semantic conventions?Beta Was this translation helpful? Give feedback.
All reactions