RESOLVED FIXED141445
New perf dashboard shouldn't always show outliers
https://bugs.webkit.org/show_bug.cgi?id=141445
Summary New perf dashboard shouldn't always show outliers
Ryosuke Niwa
Reported 2015-02-10 15:04:46 PST
It's inconvenient to always show outliners. Use a moving average's envelope to compute the y-axis range to show instead.
Attachments
Fixes the bug (14.25 KB, patch)
2015-02-10 15:19 PST, Ryosuke Niwa
cdumez: review+
Ryosuke Niwa
Comment 1 2015-02-10 15:19:29 PST
Created attachment 246348 [details] Fixes the bug
Chris Dumez
Comment 2 2015-02-10 15:25:30 PST
Comment on attachment 246348 [details] Fixes the bug View in context: https://bugs.webkit.org/attachment.cgi?id=246348&action=review r=me with 1 fix. > Websites/perf.webkit.org/public/v2/app.js:493 > + chartData.hideEnveope = true; hideEnveope -> hideEnvelope > Websites/perf.webkit.org/public/v2/interactive-chart.js:358 > + currentRange[0] = Math.min(0, currentRange[0]); So currentRange[0] can be negative?
Ryosuke Niwa
Comment 3 2015-02-10 18:35:41 PST
(In reply to comment #2) > Comment on attachment 246348 [details] > Fixes the bug > > View in context: > https://bugs.webkit.org/attachment.cgi?id=246348&action=review > > r=me with 1 fix. Thanks! > > Websites/perf.webkit.org/public/v2/app.js:493 > > + chartData.hideEnveope = true; > > hideEnveope -> hideEnvelope Fixed. > > Websites/perf.webkit.org/public/v2/interactive-chart.js:358 > > + currentRange[0] = Math.min(0, currentRange[0]); > > So currentRange[0] can be negative? Yes. There's nothing that prevents a perf. test from reporting a negative number.
Ryosuke Niwa
Comment 4 2015-02-10 18:45:43 PST
Note You need to log in before you can comment on or make changes to this bug.