|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MemoryStats
Memory statistics for the JVM which current HazelcastInstance belongs to.
Shows total physical/free OS memory, max/committed/used/free heap memory and max/committed/used/free native memory.
GarbageCollectorStats
Method Summary | |
---|---|
long |
getCommittedHeap()
Returns the amount of memory in bytes that is committed for the Java virtual machine to use. |
long |
getCommittedNativeMemory()
Returns the amount of native memory in bytes that is committed for current HazelcastInstance to use. |
long |
getFreeHeap()
Returns the amount of free memory in the JVM in bytes. |
long |
getFreeNativeMemory()
Returns the amount of free native memory in current HazelcastInstance in bytes. |
long |
getFreePhysical()
Returns free physical memory available in OS. |
GarbageCollectorStats |
getGCStats()
Returns the garbage collector statistics for the JVM |
long |
getMaxHeap()
Returns the maximum amount of memory that the JVM will attempt to use in bytes. |
long |
getMaxNativeMemory()
Returns the maximum amount of native memory that current HazelcastInstance will attempt to use in bytes. |
long |
getTotalPhysical()
Returns total physical memory available in OS. |
long |
getUsedHeap()
Returns the amount of used memory in the JVM in bytes. |
long |
getUsedNativeMemory()
Returns the amount of used native memory in current HazelcastInstance in bytes. |
Method Detail |
---|
long getTotalPhysical()
long getFreePhysical()
long getMaxHeap()
Runtime.maxMemory()
long getCommittedHeap()
Runtime.totalMemory()
,
MemoryUsage.getCommitted()
long getUsedHeap()
MemoryUsage.getUsed()
long getFreeHeap()
Runtime.freeMemory()
long getMaxNativeMemory()
long getCommittedNativeMemory()
long getUsedNativeMemory()
long getFreeNativeMemory()
GarbageCollectorStats getGCStats()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |