Replies: 1 comment 1 reply
-
Please provide a minimal application that reproduces your issue along with any necessary instructions. |
Beta Was this translation helpful? Give feedback.
1 reply
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I have two services, one is simply a jetty proxy server and the other is my application. I have started my proxy with javaagent, and it's able to log the HTTP requests from jetty server. However, after I rewrite the target, it doesn't seem to export the traces from the other application.
For example, when I hit
http://localhost:8080
, it will have a trace calledPOST /*
However, later the endpoint will be re-written, but javaagent won't combine any traces afterwards to this
POST /*
trace.To be more specific, here's my traces
There should be a trace in between
preConnectionHook
andpostConnectionHook
since the request's endpoint gets re-written and executed. But traces are not being logged.Any idea is appreciated!
Beta Was this translation helpful? Give feedback.
All reactions