Help understanding symbol

Questions about YourKit Java Profiler
Post Reply
Clasmir
Posts: 10
Joined: Thu Jun 12, 2014 5:11 pm

Help understanding symbol

Post by Clasmir »

Hello.

I am confused on what the red "-" symbol means on my cpu tracing. For these lines I do not see times or counts. Yet a few lines above I do see times and counts for the same level.

For example this line shows data:

Code: Select all

java.util.HashMap.containsValue(Object) 927911 8 927911 109337
But this one does not?

Code: Select all

java.util.HashMap.containsKey(Object) 6 0 6 12519
You might point out, why yes it does, it is just very small. I would agree with you except that the parent has this line:

Code: Select all

com.acme.hm.callq.client.diagnostics.CallQTableData.areSameDestinations(int, int) 86493 0 86461 32567706
Why can't I see where the 86493 seconds have gone?

Thank you for your time.

-Clasmir

PS: I'm using the very latest version on java 7, launched from Intellij, showing cpu tracing information.
Clasmir
Posts: 10
Joined: Thu Jun 12, 2014 5:11 pm

Re: Help understanding symbol

Post by Clasmir »

So to answer my own question...

I finally found noticed the legend which tells me that "adaptive tracing" has excluded the methods I was interested in. I went into the tracing configuration and set "adaptive" to "false" and now I can see all the details.
Post Reply