Command Line Tool for monitoring Java Heap

command linejava

Is there any command line tool for monitoring the heap size usage of Java in CentOS?

Best Answer

Use jps and jstack to learn more about Java processes. jstat can also be useful for Java statistics monitoring.

Related Question