Commit fd192309 authored by k8s-merge-robot's avatar k8s-merge-robot

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
parents 4af44ec3 7a848eb0
...@@ -199,7 +199,7 @@ func (f *Framework) afterEach() { ...@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment