java java
java java

Reputation: 415

Java profiling with mission control - Where I can see the spend time of my own methods?

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

Answers (1)

boden
boden

Reputation: 1681

You can use JProfiler, in this app you can find timeline and how been called your methods.

Upvotes: 1

Related Questions