Class RuntimeMemory.Sample
java.lang.Object
io.deephaven.engine.table.impl.util.RuntimeMemory.Sample
- Enclosing class:
- RuntimeMemory
-
Field Summary
Modifier and TypeFieldDescriptionlong
What is the last free memory value we retrieved from theRuntime.freeMemory()
.long
The total number of GC collections since program start.long
The approximated total time of GC collections since program start, in milliseconds.long
What is the last total memory value we retrieved from theRuntime.totalMemory()
. -
Constructor Summary
-
Method Summary
-
Field Details
-
freeMemory
public long freeMemoryWhat is the last free memory value we retrieved from theRuntime.freeMemory()
. -
totalMemory
public long totalMemoryWhat is the last total memory value we retrieved from theRuntime.totalMemory()
. -
totalCollections
public long totalCollectionsThe total number of GC collections since program start. The sum ofGarbageCollectorMXBean.getCollectionCount()
. -
totalCollectionTimeMs
public long totalCollectionTimeMsThe approximated total time of GC collections since program start, in milliseconds. The sum of theGarbageCollectorMXBean.getCollectionTime()
.
-
-
Constructor Details
-
Sample
public Sample()
-
-
Method Details