Tony Stark
Tony Stark

Reputation: 25518

callgrind equivalent for java?

Is there a free callgrind equivalent for java? basically, i just need anything that gives me cycle counts or time spent for each method and function of my java code.

i suppose i should mention i'm using mac, which means the eclipse thing below doesn't work for me, i believe.

Upvotes: 7

Views: 2415

Answers (2)

Stephen C
Stephen C

Reputation: 718658

Well you could start with Sun's Java VisualVM application profiling.

Upvotes: 4

Marc van Kempen
Marc van Kempen

Reputation: 556

Is this what you mean?

http://eclipsecolorer.sourceforge.net/index_profiler.html

Upvotes: 1

Related Questions