Skip to content

Commit c81d9ad

Browse files
author
Tony Mancill
committed
add min and max full GC pause to summary output
1 parent 0bdc64f commit c81d9ad

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/com/tagtraum/perf/gcviewer/exp/impl/SummaryDataWriter.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ private void exportPauseSummary(PrintWriter out, GCModel model) {
204204
exportValue(out, "avgFullGCPauseIsSig", isSignificant(model.getFullGCPause().average(), model.getFullGCPause().standardDeviation()));
205205
exportValue(out, "avgFullGCPause", pauseFormatter.format(model.getFullGCPause().average()), "s");
206206
exportValue(out, "avgFullGCPause\u03c3", pauseFormatter.format(model.getFullGCPause().standardDeviation()), "s");
207+
exportValue(out, "minFullGCPause", pauseFormatter.format(model.getFullGCPause().getMin()), "s");
208+
exportValue(out, "maxFullGCPause", pauseFormatter.format(model.getFullGCPause().getMax()), "s");
207209
}
208210
else {
209211
exportValue(out, "avgFullGCPause", "n.a.", "s");

0 commit comments

Comments
 (0)