How to make sense the (%) column in Reverse Call Tree

Questions about YourKit Java Profiler
Post Reply
bungrudi
Posts: 10
Joined: Thu Aug 13, 2015 2:49 am

How to make sense the (%) column in Reverse Call Tree

Post by bungrudi »

How do I make sense of the 'percentage' (%) number in the Reverse Call Tree.

Image

In the example above, am I correct to assume that buildDataItem() spent 76% as much time as initializeFieldsNotation() ?
bungrudi
Posts: 10
Joined: Thu Aug 13, 2015 2:49 am

Re: How to make sense the (%) column in Reverse Call Tree

Post by bungrudi »

Just realized the above picture clipped.
Here's the full picture http://i.imgur.com/z7o0Jcy.png
Anton Katilin
Posts: 6172
Joined: Wed Aug 11, 2004 8:37 am

Re: How to make sense the (%) column in Reverse Call Tree

Post by Anton Katilin »

This view shows where particular method was called from:
https://www.yourkit.com/docs/java/help/ ... traces.jsp

All calls of the method correspond to 100%.
For example, 36% of the method time was spent in calls made from ...UnmatchedData()

If you don't see some calls and/or the branches do not sum up to 100%, please turn off the filters:
https://www.yourkit.com/docs/java/help/filters.jsp
bungrudi
Posts: 10
Joined: Thu Aug 13, 2015 2:49 am

Re: How to make sense the (%) column in Reverse Call Tree

Post by bungrudi »

Anton Katilin wrote:This view shows where particular method was called from:
https://www.yourkit.com/docs/java/help/ ... traces.jsp

All calls of the method correspond to 100%.
For example, 36% of the method time was spent in calls made from ...UnmatchedData()

If you don't see some calls and/or the branches do not sum up to 100%, please turn off the filters:
https://www.yourkit.com/docs/java/help/filters.jsp
ah.. got it :)
thanks.
Post Reply