I profile running Java applications often with VisualVM but it needs X to run on the machine

I know I can connect through management port but that will be an offline sampled profiling which is not enough for me.

So I'm looking for a solution with which I can profile the CPU usage of the methods of a running Java application from command-line. It's enough for me to collect data on the server and then the collected data can be analyzed on a different machine.

Update:

It seems I need to be more specific. I want to profile a running Java application from command line, I don't want to stop it and rerun it.

link|improve this question

1  
Can you collect 10 or 20 stack samples with jstack? Then if Foo is a method, its overall time usage is the fraction of samples containing it. Its CPU usage is the fraction of those samples that don't terminate in I/O or a system call. Its "self time" is the fraction of samples in which it itself is the terminus. – Mike Dunlavey Jul 27 '11 at 18:30
that would be the same as the VisualVM offline profiling, won't be? – KARASZI István Jul 28 '11 at 13:56
1  
Check the doc. It doesn't tell you, by line (not function) the percent of inclusive time (not exclusive) that line is responsible for, and overall time (not just CPU). It suffers from these problems. Stack sampling is not pretty, but it finds the performance problems very quickly. Other tools are pretty, and they give you lots of numbers to puzzle over, but they don't take you straight to the problem, whatever it is. – Mike Dunlavey Jul 28 '11 at 17:12
I tried to get the stack traces but it refuses to run without the -F flag, with which it freezes my app. – KARASZI István Jul 28 '11 at 17:48
Hey, I don't need anything pretty. I either run it under the IDE and collect them that way, or use something like jstack that snapshots the stack of a running app. – Mike Dunlavey Jul 29 '11 at 1:35
show 1 more comment
feedback

4 Answers

up vote 2 down vote accepted

Can you collect 10 or 20 stack samples with jstack? Then if Foo is a method, its overall time usage is the fraction of samples containing it. Its CPU usage is the fraction of those samples that don't terminate in I/O or a system call. Its "self time" is the fraction of samples in which it itself is the terminus.

I don't need anything pretty. I either run it under the IDE and collect them that way, or use something like jstack that snapshots the stack of a running app.

That's the random-pause technique.

link|improve this answer
This solution helped me to find a bottleneck with DNS resolution on the server. Thank you again! – KARASZI István Aug 19 '11 at 21:55
@KARASZI István: Glad it helped. – Mike Dunlavey Aug 19 '11 at 22:59
feedback

We have used hprof on our servers and it definitely is better than sysouts in case you can't run a full fledged VisualVM session.

Examples of using hprof are plenty out there:

link|improve this answer
Updated post with links which you can use as starting point. – Sanjay T. Sharma Jul 27 '11 at 14:45
but I don't really get how can I attach it to a pid – KARASZI István Jul 27 '11 at 14:45
Sorry, AFAIK, hprof doesn't allow for attaching to a process. Your best bet would be to look into tools like jprofile and jtop. java.sun.com/developer/technicalArticles/J2SE/monitoring – Sanjay T. Sharma Jul 27 '11 at 15:27
feedback

You can run most commercial profilers remotely so an agent is run on the server then connect to that agent through a client on your dev machine. My absolute favorite profiler is JProfiler. It's fairly reasonable purchase, and it's very stable (which not all commercial profilers that's true).

http://www.ej-technologies.com/products/jprofiler/overview.html

Other commercial profilers that are stable, but not my favorite are YourKIT.

http://www.yourkit.com/

Those smaller vendors make good tools. These tools will provide you tons of information about method timings, memory use, GC, etc. Much more than jconsole.

link|improve this answer
feedback

looks like the "canonical" way to profile a java app from the command line is to start it with profiling command line parameters, like

$ java -Xrunhprof:cpu=samples,depth=30,file=myprogram.hprof 

Then examine the file "myprogram.hprof" with some GUI tool. Unfortunately this won't help in your case (since you want to attach them detach) so some of the other answer might work, though you could have it sample infrequently and still use that with less slowdown/impact overall.

ref: http://thunderguy.com/semicolon/2004/04/18/profiling-a-java-program-easily/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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