I have recently started exploring skywalking as APM tool.
I am interested in looking at the time spent by methods/functions at application layer. Basically a instrumentation sort of thing for the JAVA application. With Skywalking I just get 3 spans(methods) that have one root function and two DB execute functions. I tried adding the property
'plugin.jdkthreading.threading_class_prefixes=${THREADING_CLASS_PREFIX=my.package}'
But this dint work. I could still see only 3 spans in the dashboard for the API being hit. Under Profile feature I can get the thread stack. But i am only interested with Hotspot methods. Am i missing something in configuration?
I want classes starting with particular pattern to be instrumented and captured in trace. How can I achieve this? Or is there any other open source APM tool I can start with?