You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a request is made to an endpoint the first span is {GET/POST/PUT ETC} instead of the actual method being being called by the endoint.
For example when I make a request to /report I expect the first span to be ReportController.generateReport, and not HTTP POST. I use @WithSpan annotations on my endpoint methods.
I using Micronaut with Netty, and run the opentelemetry agent like this:
Describe the bug
When a request is made to an endpoint the first span is {GET/POST/PUT ETC} instead of the actual method being being called by the endoint.
For example when I make a request to
/report
I expect the first span to be ReportController.generateReport, and not HTTP POST. I use@WithSpan
annotations on my endpoint methods.I using Micronaut with Netty, and run the opentelemetry agent like this:
Example in the picture below.
Steps to reproduce
Example above.
Expected behavior
Expect the first span to be the actual method running inside the application.
Actual behavior
I see POST, GET etc as the first span
Javaagent or library instrumentation version
2.13.1
Environment
JDK:
OS:
Additional context
No response
The text was updated successfully, but these errors were encountered: