3

Preferably Eclipse Plugin

Is there any Eclipse plugin which can help me in looking at performance of a Java program?

or (in case Eclipse plugin is not available)

If there isn't any Eclipse plugin, is there any other way?

Update

What about mBProfiler?

AabinGunz
  • 12,109
  • 54
  • 146
  • 218

4 Answers4

7

I wouldn't use TPTP, as it is no longer maintained. If you're interested in profiling, have a look at JVM Monitor. It is very similar to (J)VisualVM, but with a better integration into Eclipse in my opinion. If you're more into micro benchmarking, JBenchX might be worth a look.

cello
  • 5,356
  • 3
  • 23
  • 28
  • Thanks, also can you take a look at [mBProfiler](http://marketplace.eclipse.org/content/mbprofiler-0?mpc=true&mpc_state=), how is it? – AabinGunz Mar 26 '12 at 07:26
  • I don't know about mBProfiler, never worked with it. Seems to be commercial. In a previous job, we've used [www.yourkit.com](YourKit) as a commercial profiler, and I was very happy with it, but mostly use JVM Monitor nowadays for my needs. mBProfiler seems to especially target embedded JVMs, not sure if you need that or not. – cello Mar 26 '12 at 20:10
1

If you can, use jvisualvm in the Sun Java 6 JDK.

another tool is visualvm

kandarp
  • 4,979
  • 11
  • 34
  • 43
0

You can use jvisualvm to analyze the code and find bottlenecks.

GG.
  • 2,835
  • 5
  • 27
  • 34
0

you can use Eclipse Test and Performance Tools Platform (TPTP) to profile your java application

Amm Sokun
  • 1,298
  • 4
  • 20
  • 35