We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Undertow instrumentation finishes server request span before the first servlet filter exits.
This has two implications:
Steps to reproduce https://github.com/wildfly/quickstart/blob/11.0.0.Final/jaxrs-client/src/main/java/org/jboss/as/quickstarts/jaxrsclient/rest/ContactResourceRESTService.java Deploy on http://download.jboss.org/wildfly/10.1.0.Final/wildfly-10.1.0.Final.zip
What did you expect to see?
Span should be recording events after chain.doFilter(request, response);
chain.doFilter(request, response);
What did you see instead?
Span is not recording events after chain.doFilter(request, response);
What version are you using? 0.17.0
Environment JDK 11 WF 10.1.0
The text was updated successfully, but these errors were encountered:
cc) @laurit
Sorry, something went wrong.
The issue seems to be present only for post request
curl -ivX POST -H "Content-Type: application/json" localhost:8080/jaxrs-client/rest/contacts -d '{"id": 15, "name": "jdoe"}'
Successfully merging a pull request may close this issue.
Describe the bug
Undertow instrumentation finishes server request span before the first servlet filter exits.
This has two implications:
Steps to reproduce
https://github.com/wildfly/quickstart/blob/11.0.0.Final/jaxrs-client/src/main/java/org/jboss/as/quickstarts/jaxrsclient/rest/ContactResourceRESTService.java
Deploy on http://download.jboss.org/wildfly/10.1.0.Final/wildfly-10.1.0.Final.zip
What did you expect to see?
Span should be recording events after
chain.doFilter(request, response);
What did you see instead?
Span is not recording events after
chain.doFilter(request, response);
What version are you using?
0.17.0
Environment
JDK 11
WF 10.1.0
The text was updated successfully, but these errors were encountered: