-
i was integrating skywalking java agent with play application the span operations of the db are not appearing in the same trace as the http requests. they are in different trace i added breakpoint to but they are not getting invoked at run time pointing in right direction is very helpful |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
In another trace, it means the database relative codes run in another thread. Such as thread-1 is calling the target of interceptors, then it switches to another thread-2, and run JDBC relative codes. |
Beta Was this translation helpful? Give feedback.
In another trace, it means the database relative codes run in another thread. Such as thread-1 is calling the target of interceptors, then it switches to another thread-2, and run JDBC relative codes.