Package hudson.diagnosis
Class MemoryUsageMonitor.MemoryGroup
- java.lang.Object
-
- hudson.diagnosis.MemoryUsageMonitor.MemoryGroup
-
- Enclosing class:
- MemoryUsageMonitor
public static final class MemoryUsageMonitor.MemoryGroup extends Object
A memory group is conceptually a set of memory pools.
-
-
Field Summary
Fields Modifier and Type Field Description MultiStageTimeSeries
max
Trend of the maximum memory size, after GCs.MultiStageTimeSeries
used
Trend of the memory usage, after GCs.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MultiStageTimeSeries.TrendChart
doGraph(String type)
Generates the memory usage statistics graph.
-
-
-
Field Detail
-
used
public final MultiStageTimeSeries used
Trend of the memory usage, after GCs. So this shows the accurate snapshot of the footprint of live objects.
-
max
public final MultiStageTimeSeries max
Trend of the maximum memory size, after GCs.
-
-
Method Detail
-
doGraph
public MultiStageTimeSeries.TrendChart doGraph(@QueryParameter String type) throws IOException
Generates the memory usage statistics graph.- Throws:
IOException
-
-