What is jvmstat?

What is jvmstat?

The jvmstat is a technology for adding light weight performance, configuration instrumentation to the HotSpot JVM. The jvmstat provides a set of APIs and tools to monitor the performance of the HotSpot JVM in the production environments.

The tools are jvmstat-for general purpose command line tool, jvmps-a java process list tool and visualgc-a generational heap visualization.

The jvmstat supports remote monitoring with the support of RMI server application.
Describe how to implement singleton design pattern in struts
A singleton implementation is done using action class in struts framework. It performs as a front controller and every request will go through it...
Difference between length and length()? - Java
The ‘length’ is an instance constant which is the size of an array. While the ‘length()’ is a method that returns the no. of the characters in a string...
Difference between >> and >>> - Java
The >> is right shift operator. It shifts bits towards right. For example: 5 >> 1 returns 2. It shifts one bit towards right and one bit is lost...
Post your comment