RESOLVED FIXED141438
New perf dashboard should have the ability to overlay moving average with an envelope
https://bugs.webkit.org/show_bug.cgi?id=141438
Summary New perf dashboard should have the ability to overlay moving average with an ...
Ryosuke Niwa
Reported 2015-02-10 11:03:48 PST
In order to hide outliers and detect new regressions automatically, we need a way to try out different kinds of moving averages and enveloping strategies. Add the ability to show that visually on our graphs.
Attachments
Patch (34.90 KB, patch)
2015-02-10 13:22 PST, Ryosuke Niwa
kling: review+
Ryosuke Niwa
Comment 1 2015-02-10 13:22:13 PST
Andreas Kling
Comment 2 2015-02-10 13:25:02 PST
Comment on attachment 246340 [details] Patch rs=me
Chris Dumez
Comment 3 2015-02-10 13:26:43 PST
Comment on attachment 246340 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=246340&action=review > Websites/perf.webkit.org/public/v2/app.js:441 > + var strategies = Statistics.EnvelopingStrategies.map(this._cloneStrategy.bind(this)); Isn't it confusing to reuse the same variable name as before? > Websites/perf.webkit.org/public/v2/app.js:447 > + var parametreList = (strategy.parameterList || []).map(function (param) { return Ember.Object.create(param); }); parametreList -> parameterList
Chris Dumez
Comment 4 2015-02-10 13:29:34 PST
Comment on attachment 246340 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=246340&action=review > Websites/perf.webkit.org/public/v2/app.js:466 > + for (var i = 0; i < chosenStrategy.parameters; i++) chosenStrategy.parameters.length ?
Chris Dumez
Comment 5 2015-02-10 13:34:52 PST
Comment on attachment 246340 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=246340&action=review > Websites/perf.webkit.org/public/v2/js/statistics.js:112 > + var sum = 0; redundant? already inside the loop. > Websites/perf.webkit.org/public/v2/js/statistics.js:113 > + var i = 0; redundant? already inside the loop.
Ryosuke Niwa
Comment 6 2015-02-10 13:38:28 PST
Thanks for the reviews. Will land addresssing those comments.
Ryosuke Niwa
Comment 7 2015-02-10 13:39:41 PST
Note You need to log in before you can comment on or make changes to this bug.