vote up 5 vote down star
4

I'm looking for a good tool to profile a java webapp. I'd like to get performance information and memory usage if possible.

Any suggestions?

flag

7 Answers

vote up 7 vote down check

JProfiler is a really good one. It integrates with all the major IDEs and application servers.

link|flag
Could you elaborate on the benefits of JProfiler over Netbeans profiler? I'd really like to know :) – Thorbjørn Ravn Andersen Feb 2 at 8:23
I don't know what they are. I've never used the Netbeans profiler, but I've heard raves about it. – jodonnell Feb 4 at 1:37
vote up 0 vote down

SmartInspect is a profiler and logger. Not specific to memory, but you might want to take a look. It works with a variety of languages too, including Delphi, Java and .NET. Includes other more advanced features.

SmartInspect architecture

link|flag
vote up 0 vote down

I've used YourKit Java Profiler 7.5 and was reasonably happy with it. Java has some pretty good tools included with recent releases that are worth looking into. (e.g., jmap -histo <pid>)

link|flag
vote up 2 vote down

I use Netbeans Profiler:

alt text

Its free, has task based profiling, a heap walker, allows the insertion of profiling points, tracks memory usage and threading, but best of all it allows you to profile remote JVM's. You can even attach to ones which are already running.

Oh, and it works really well if you've a maven build for your project too.

link|flag
vote up 1 vote down

I like to use SAP Memory Analyzer, which is based in Eclipse. It works very well, also for large heap dumps!

link|flag
vote up 4 vote down

The Eclipse Memory Analyzer is the best tool for analysing the memory usage of java applications

link|flag
vote up 1 vote down

For initial investigation, you can start jconsole and attach it to a running process. This will allow you to see memory usage over time even in production, including garbage collections without the full impact of a profiler setup.

link|flag

Your Answer

Get an OpenID
or

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