diff options
author | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-14 01:19:48 +0000 |
---|---|---|
committer | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-14 01:19:48 +0000 |
commit | a1831928401890f45e7d4eb09ee7932bc3fe101c (patch) | |
tree | 544ffcb7a974fa2e5d57a221cc65367239443464 /tools/telemetry/support | |
parent | 731a894ef76c1a6d9353106c6179de4a34bc1b47 (diff) | |
download | chromium_src-a1831928401890f45e7d4eb09ee7932bc3fe101c.zip chromium_src-a1831928401890f45e7d4eb09ee7932bc3fe101c.tar.gz chromium_src-a1831928401890f45e7d4eb09ee7932bc3fe101c.tar.bz2 |
[Telemetry] Categorize units better.
1. Output a unit of "count" for IO operation counts.
2. Make the HTML output categorize anything with count as "Memory", not "Time".
In a future patch, we should make the selector on the results page show
"IO" as its own top-level category like Memory and Time.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/23129002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@217427 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/telemetry/support')
-rw-r--r-- | tools/telemetry/support/html_output/results-template.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/telemetry/support/html_output/results-template.html b/tools/telemetry/support/html_output/results-template.html index 898d057..c6f2317 100644 --- a/tools/telemetry/support/html_output/results-template.html +++ b/tools/telemetry/support/html_output/results-template.html @@ -212,8 +212,8 @@ function PerfTestMetric(name, metric, unit, isImportant) { unit == 'KB' || unit == 'MB' || unit == 'bytes' || - !metric.indexOf('V8.') || - metric == 'processes'); + unit == 'count' || + !metric.indexOf('V8.')); } this.addResult = function (newResult) { testResults.push(newResult); |