Not getting data on all methods where withSpan is used in Elastic #13043
Unanswered
zubaiersayed
asked this question in
Q&A
Replies: 1 comment
-
hi @zubaiersayed, I'd suggest using the logging exporter to narrow down whether the issue is in the data collected by the Java agent, or an issue in the Elastic backend if it's an issue in the Java agent, we'd probably need a standalone repro that we can use to troubleshoot it |
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
-
Hi,
Im running a Kotlin backend with Micronaut framework. Almost the whole codebase uses coroutines. Recently Ive added this agent to track the applications performance. We use ElasticSearch to see the data the agent generates. I can trace some methods, but others I cannot see in Elastich dashboard.
Im using these parameters for the agent. Most of the code is wrapped in
coroutineScope
and I haveasync(Dispatchers.IO)
andlaunch(dispatchers.IO)
calls inside the scope. I use@WithSpan
annotation on Controller methods, as well as service methods, and other methods I want to track.Why am I not seeing all the methods that has this annotation? Am I missing anything?
Beta Was this translation helpful? Give feedback.
All reactions