Monitoring Java garbage collection using jstat The jstat tool is used to displays performance statistics for an instrumented HotSpot Java virtual machine (JVM). Java memory management revolves around the garbage collector and Garbage collection is the process which is responsible to clean the heap memory and freeing space that is being taken up by unreferenced objects, … Continue reading JSTAT – JVM GC Performance Monitoring Tool
JAVA
Garbage Collection in Java
Garbage Collection Process in JAVA Garbage Collection in Java automatically allocates and deallocates memory, so that developers doesn't need to write explicit program to do memory management. which is one of the main advantage of Java programming. Whenever a Java programs run on the JVM, the objects are created on the heap and is a … Continue reading Garbage Collection in Java
GC Time Using jstat
GARBAGE COLLECTION TIME - (using JSTAT) Login to your Linux/Unix Server Enter the below command to get the JAVA PID running on the server. ps –ef|grep –i java From the output take the application JAVA PID. Using jstat command with … Continue reading GC Time Using jstat
JVM Memory utilisation in linux/Unix
JVM Memory Utilisation JVM Memory utilisation in Linux/Unix server Login to your Linux/Unix Server Enter the below command to get the JAVA PID running on the server. ps –ef|grep –i java From the output take the application JAVA PID. Using below command … Continue reading JVM Memory utilisation in linux/Unix