Title: [197903] trunk/Websites/perf.webkit.org
Revision
197903
Author
[email protected]
Date
2016-03-09 17:00:14 -0800 (Wed, 09 Mar 2016)

Log Message

Add Size metric to perf dashboard
https://bugs.webkit.org/show_bug.cgi?id=155266

Reviewed by Chris Dumez.

Added the "Size" metric and use bytes as its unit.

* public/js/helper-classes.js:
(PerfTestRuns):
* public/v2/data.js:
(RunsData.unitFromMetricName):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (197902 => 197903)


--- trunk/Websites/perf.webkit.org/ChangeLog	2016-03-10 00:56:31 UTC (rev 197902)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2016-03-10 01:00:14 UTC (rev 197903)
@@ -1,3 +1,17 @@
+2016-03-09  Ryosuke Niwa  <[email protected]>
+
+        Add Size metric to perf dashboard
+        https://bugs.webkit.org/show_bug.cgi?id=155266
+
+        Reviewed by Chris Dumez.
+
+        Added the "Size" metric and use bytes as its unit.
+
+        * public/js/helper-classes.js:
+        (PerfTestRuns):
+        * public/v2/data.js:
+        (RunsData.unitFromMetricName):
+
 2016-02-20  Ryosuke Niwa  <[email protected]>
 
         Add the support for universal slave password

Modified: trunk/Websites/perf.webkit.org/public/js/helper-classes.js (197902 => 197903)


--- trunk/Websites/perf.webkit.org/public/js/helper-classes.js	2016-03-10 00:56:31 UTC (rev 197902)
+++ trunk/Websites/perf.webkit.org/public/js/helper-classes.js	2016-03-10 01:00:14 UTC (rev 197903)
@@ -163,6 +163,7 @@
         'Malloc': 'B',
         'Heap': 'B',
         'Allocations': 'B',
+        'Size': 'B',
         'Score': 'pt'}[suffix];
 
     // We can't do this in PerfTestResult because all results for each metric need to share the same unit and the same scaling factor.

Modified: trunk/Websites/perf.webkit.org/public/v2/data.js (197902 => 197903)


--- trunk/Websites/perf.webkit.org/public/v2/data.js	2016-03-10 00:56:31 UTC (rev 197902)
+++ trunk/Websites/perf.webkit.org/public/v2/data.js	2016-03-10 01:00:14 UTC (rev 197903)
@@ -410,6 +410,7 @@
         'Malloc': 'B',
         'Heap': 'B',
         'Allocations': 'B',
+        'Size': 'B',
         'Score': 'pt',
     }[suffix];
     return unit;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to