Jave mission control has some great features. For example one can see the "Hot Methods" of the application or there are "Call Tree" section when one can find top consuming functions call hierarchy. But I am wondering can one really rely on profiling results, when you are interested on finding performance bottlenecks(in terms of time)? For example one can put some "sleeps" inside some functions and seems profiler will not point out them.
Asked
Active
Viewed 595 times
2 Answers
3
Hot Methods lists the methods that execute Java code the most. If your application is in native code or sleeping it will not show in that table.
Look at the Latencies tab to see latencies, i.e. Thread.sleep.

Kire Haglin
- 6,569
- 22
- 27
1
you can use events->graph tab to see sleep,locks...it will help you to understand how long your thread spend on them

user877315
- 31
- 4