From 7a848eb03ac8c42c4efd2a70bba73c3fb8cbe5ca Mon Sep 17 00:00:00 2001 From: gmarek Date: Mon, 4 Apr 2016 17:42:32 -0700 Subject: [PATCH] Print 100th percentile of resource usage when gatherer is turned on. --- test/e2e/framework.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework.go b/test/e2e/framework.go index cb08069f9ec..ae3d65223b7 100644 --- a/test/e2e/framework.go +++ b/test/e2e/framework.go @@ -199,7 +199,7 @@ func (f *Framework) afterEach() { summaries := make([]TestDataSummary, 0) if testContext.GatherKubeSystemResourceUsageData && f.gatherer != nil { By("Collecting resource usage data") - summaries = append(summaries, f.gatherer.stopAndSummarize([]int{90, 99}, f.addonResourceConstraints)) + summaries = append(summaries, f.gatherer.stopAndSummarize([]int{90, 99, 100}, f.addonResourceConstraints)) } if testContext.GatherLogsSizes {