Print 100th percentile of resource usage when gatherer is turned on.

pull/6/head
gmarek 2016-04-04 17:42:32 -07:00
parent 4af44ec37b
commit 7a848eb03a
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ func (f *Framework) afterEach() {
summaries := make([]TestDataSummary, 0) summaries := make([]TestDataSummary, 0)
if testContext.GatherKubeSystemResourceUsageData && f.gatherer != nil { if testContext.GatherKubeSystemResourceUsageData && f.gatherer != nil {
By("Collecting resource usage data") 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 { if testContext.GatherLogsSizes {