|
Measures reported by JvmClassesTest
This test reports the number of classes loaded/unloaded from the memory.
The measures
made by this test are as
follows:
| Measurement |
Description |
Measurement
Unit |
Interpretation |
| Classes_loaded |
Indicates the number of classes currently loaded into memory. |
Number |
Classes are fundamental to the design of Java programming language. Typically, Java applications install a variety of class loaders (that is, classes that implement java.lang.ClassLoader) to allow different portions of the container, and the applications running on the container, to have access to different repositories of available classes and resources. A consistent decrease in the number of classes loaded and unloaded could indicate a road-block in the loading/unloading of classes by the class loader. If left unchecked, critical resources/classes could be rendered inaccessible to the application, thereby severely affecting its performance.
|
| Classes_unloaded |
Indicates the number of classes currently unloaded from memory. |
Number |
| Total_classes_loaded |
Indicates the total number of classes loaded into memory since the JVM started, including those subsequently unloaded. |
Number |
 
|
|