Reputation: 415
I have a webApp with wildfly, jpa, ejb and jsf. Now I want to know how much time my methods takes? So I started mission control and started the flight Recorder.
In the Report of the Flight Recorder I can see the hot methods and an overview of packages with Time spent. But I want to know what has been called by my own methods and how much time the methods spend?
For example:
mypackage.Myclass.
in myMethod -- spend 4 ms
Upvotes: 2
Views: 912
Reputation: 1681
You can use JProfiler, in this app you can find timeline and how been called your methods.
Upvotes: 1