In jprofiler's CPU Views tab, the call graph typically displays the number of invocations of each method (ex, 214 inv.). However, on some of my methods, it shows "evt." instead (ex, 460 evt.). What does evt stand for, and how does it differ from number of invocations?

有帮助吗?

解决方案

This depends on the thread status selection. For "All states" and "Runnable" JProfiler shows invocations, hence "inv.". For "Waiting", "Blocked" and "Net IO", it shows the cumulated number of events ("evt.") that are associated with the selected thread status. This is not necessarily the same as the number of times the methods in the call tree have been invoked.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top