Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for the Java equivalent of gprof. I did a little Java profiling using System.getCurrentMillis(), and saw several GUI tools which seem too much. A good compromise could be a text-based Java profiler, preferably free or low-cost, which works in either Windows XP or Linux.

share|improve this question
9  
@casperOne why closed? This question asks about software tools commonly used by programmers (thus, according to FAQ fits) and Yuval shrinked the scope by defining platform and other parameters – om-nom-nom Feb 25 '12 at 9:03
3  
"Recommend a Java profiler" according to what standards? What metrics should be used in the recommendation? Which profiling features does the OP find most useful? Very subjective. – John Saunders Mar 3 '12 at 9:32
12  
I dislike how SO closes questions like this. It could have easily morphed into a community wiki that listed "the best" profilers. Instead, it's locked, and google, sends people (first link) straight to this (locked, unupdatedable) post if they search for "java profiler" <sigh> – rogerdpack Jan 17 at 17:06

closed as not constructive by casperOne Feb 24 '12 at 14:46

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

14 Answers

up vote 7 down vote accepted

A list of Open source JAVA profilers that you may find useful.

share|improve this answer
65  
We're looking for recommendations, not a laundry list of all existing profilers. In my experience, a lot of open source GUI tools are frankly junk. So which of these are good, and which of them are junk? – John Jan 5 '11 at 21:52
5  
I concur. The list is a OLD list of profilers and doesn't offer what is good or bad. Some of the links are dead. – codeDr Sep 28 '11 at 20:57
2  
Most of the items on that list are actually quite horrid, they are either a decade old, poor quality applications, or just plain don't work – Michael Apr 12 '12 at 6:56

SUN Java SDK now ships with its own profiler, visualVM. On Linux or OS X, just type the command jvisualvm in a terminal. On Windows, type jvisualvm command in the cmd shell

enter image description here

share|improve this answer
4  
it's so cool that this just comes with the install, I thought java was supposed to be painful – slf Sep 7 '12 at 1:59
It works also on Windows, not only OS X. – utapyngo Nov 7 '12 at 10:42
@utapyngo how can you launch it? – Renaud Nov 7 '12 at 21:09
1  
@Renaud: the same way, using the jvisualvm command in the cmd shell. – utapyngo Nov 8 '12 at 6:50
2  
and it also works on Linux... but everyone would have guessed. – Nicolas Mar 6 at 12:58
show 1 more comment

You may want to check out the following:

share|improve this answer
1  
One correction--visual VM is a stand alone tool that is built on the Netbeans platform. The Netbeans Profiler is a profiling tool integrated into the Netbeans IDE that's intended for use as part of your day-to-day development activities. Same functionality, different UI experience. – James Schek Sep 25 '08 at 15:56
+1 for recommending YourKit – Nicolas Jul 10 '12 at 9:28

We've been using JProfiler where I work and are very pleased.

share|improve this answer
3  
(as a note, non free) – rogerdpack Jan 17 at 17:03

Absolutely no need to pay for a Java profiler, also the text based profiling tools that exist are nowhere near as easy to use as the GUI ones. Specifically for profiling having flexible views that you can easily resort, filter, slice and dice is a huge plus.

My recommendation: go with Netbeans and its included profiler or the above mentioned VisualVM if you have access to JDK 1.6 update 7 or higher (they are basically the same product).

share|improve this answer

YourKit does a GREAT job at profiling Java applications. It is a commercial project, but it does have demo licenses available (30 days if I remember correctly).

share|improve this answer
2  
+1, however it's only 15 days now :( – user155695 Apr 17 '12 at 16:10

JProfiler works well - easy to setup in eclipse, and pretty much no configuration. Just pretty the button to launch it in the profiler instead of the normal test/run config.

share|improve this answer

You may checkout JAMon. It's quite easy and gives very good facility to monitor a part of code or entire function flow.

It uses Proxy mechanism and at any point of time you can generate the report of performance by calling just one method.

It does not have any fancy GUI but if you are developer and you want to develop your own custom solution to monitor the things, I guess this one would do the job.

share|improve this answer

I searched for this myself, and found that the free VisualVM is very good. Be sure to download the most recent version. (An older version also comes with the Java JDK).

There is a Eclipse plugin available, but it doesn't offer much. The profiler doesn't wait with starting your program until it's ready to profile, so you have to manually set some sleep timer or so.

share|improve this answer
Yes, I also tried VisualVM 1.2. It was very useful. – Yuval F Apr 5 '10 at 7:21

Java equivalent of gprof?

You can do better than that.

share|improve this answer
Thanks Mike. As you said, "Programmers tend to be skeptical of this technique unless they've used it themselves." This looks interesting, to say the least, so I promise to give it a shot. Nevertheless, I have used gprof successfully in the past, so I view it as an imperfect but useful tool. – Yuval F Jul 8 '10 at 13:52
@Yuval: Right. There are some problems that gprof can find. Just today I was sampling an app, and about 20% of its time was spent in stuff that gprof could have found. A lot was not, like I/O and extra calls to math library routines. – Mike Dunlavey Jul 8 '10 at 17:48
@Yuval: Bear with me. If gprof finds something costing 20% (out of 10 seconds) and that something can be optimized to around zero, now the program takes 8 seconds, and gprof has played all its cards. Chances are there are other ways to pick up substantial percentages, but if you can't find them, you're stuck with your 8 seconds. – Mike Dunlavey Jul 8 '10 at 18:12

JProbe from Quest Software will rock your world ;)

But it has a price... You can use the trial for 10 days though ;)

edit: I see that they also have a freeware version with only the Memory Heap Dump Analysis... Quite nice!

share|improve this answer

I would add the IBM Java HealthCenter as an option for profiling Java applications: http://www.ibm.com/developerworks/java/jdk/tools/healthcenter/. Rather fast, and painless to capture and analyze JVM/Java App issues.

share|improve this answer
I am suprised that IBM Support Assistant Workbench + HealthCenter are free. I read the word 'free' on IBM's site, but has anybody read the license agreement thoroughly and confirm that it is free ? – f3lix Aug 19 '11 at 11:57

Now there is also profiler from foursquare: HeapAudit.

HeapAudit is not a monitoring tool, but rather an engineering tool that collects actionable data – information sufficient for directly making code change improvements. It is created for the real world, applicable to live running production servers.

HeapAudit is a foursquare open source project designed for understanding JVM heap allocations. It is implemented as a Java agent built on top of ASM.

share|improve this answer

I know Netbean is a GUI tool, but it has a great profiler, easy to use, I use it daily.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.