Posts Tagged ‘GC’

Human readable JVM GC timestamps

When we are diagnosing problems in a Java (EE or otherwise) application, is often a good idea to check how garbage collection is performing. One of the basic and most unobtrusive actions is to enable garbage collection logging. As you may know, if we add the following arguments to the java start command… -Xloggc:<file_name> –XX:+PrintGCDetails [...]