Interface JVMClassLoadingStats
- All Superinterfaces:
Stats
A Stats interface, to expose the monitoring information
about the JVM Classloading subsystem
- Since:
- 8.1
-
Method Summary
Modifier and TypeMethodDescriptionReturns the number of classes that are currently loaded in the JVMReturns the total number of classes that have been loaded, since the JVM began executionReturns the number of classes that have been unloaded from the JVMMethods inherited from interface org.glassfish.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
-
Method Details
-
getLoadedClassCount
CountStatistic getLoadedClassCount()Returns the number of classes that are currently loaded in the JVM- Returns:
- CountStatistic The total number of classes currently loaded
-
getTotalLoadedClassCount
CountStatistic getTotalLoadedClassCount()Returns the total number of classes that have been loaded, since the JVM began execution- Returns:
- CountStatistic The total number of classes loaded
-
getUnloadedClassCount
CountStatistic getUnloadedClassCount()Returns the number of classes that have been unloaded from the JVM- Returns:
- CountStatistic number of unloaded classes
-