Merge pull request #23851 from gmarek/percentile

Automatic merge from submit-queue

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

Ref. #23820
pull/6/head
k8s-merge-robot 2016-04-04 19:03:37 -07:00
commit fd1923098b
1 changed files with 1 additions and 1 deletions

View File

@ -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 {