I am trying to monitor the java heap size dynamically. Does anybody know how to get the maxmium memory used in the process of running a piece of codes? Does the Runtime.maxMemory() do the trick? Thanks
|
|
||||
|
|
|
If you like you can visually view a lot of values profiling your app with JConsole. http://docs.oracle.com/javase/6/docs/technotes/tools/share/jconsole.html Start your application with:
and you app will be available for select when you start /bin/jconsole.exe |
||||
|
|
|
There are a large number of profiler tools available that should help you with this. A popular commercial tool is YourKit, and it gets rave reviews. A free alternative is VisualVM, which I've used in the past and can provide a lot of insight. |
|||||||||
|
3 samples 1 one second see more here |
||||
|
|
|
There is also the java.lang.management package. Use the ManagementFactory to get an |
|||
|
|
|
We use app internals xpert by OpNet to monitor heap usage and leaks in realtime in our load testing environment and production. It's lightweight enough to not impact prod, so we get great data we can't get from QA. We also do profiling of methods and db calls in both environments to help us figure out what code/sql to optimize. Very cool stuff with pretty trend charts, but not free by any stretch. If you've got a lot of dollars riding on your app, it's worth the investment. http://www.opnet.com/solutions/application_performance/appinternals-xpert.html |
|||
|
|
|
Yet another free alternative is to use Java-monitor. Have a look at this live demo. Just click on any of the servers to see detailed graphs on heap memory, non-heap memory, file descriptors, database pools and much more. |
||||
|
|
|
Maybe jvmtop is worth a look. It's a command-line tool which provides a live-view at several metrics, including heap size:
|
|||
|
|