I know we can use tools like JProfiler etc. Is there any tutorial on how to configure it to display the memory usage just by remote monitoring?
Any idea?
|
|
|
|
|
|
|
I usually use YourKit which is an excellent application (license needed). In your webservers startup/shutdown script (catalina.sh for tomcat) put in:
You'll need YourKit already downloaded and added to your library path (I do this in catalina.sh as well):
You can then launch the YourKit client on your local desktop and remotely connect. |
||
|
|
|
|
you can change to VM params of your java application to allow remote profiling something like -agentlib:jprofilerti=port=25000 general explanation for jprolifer http://resources.ej-technologies.com/jprofiler/help/doc/ example is http://profiler.netbeans.org/docs/help/5.5/attach.html#direct_attach vor netbeans or http://plugins.intellij.net/plugin/?id=253 for my favorite IDE Intellij |
||
|
|
|
|
you have VisualGC, it's not very advanced but you can see the memory usage of your application (garbage,old, perm etc...) http://java.sun.com/performance/jvmstat/visualgc.html to resume : you launch a daemon monitoring on the remote machine (http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/jstatd.html, see the security parapraph)
with a file here called jstatd.all.policy containing :
on the remote machine you got the pid of your application to debug with the jps tool : http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/jps.html#jps finally on your local machine you launch the visualgc :
|
||
|
|