Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: tools/perf/measurements/v8_gc_times.py

Issue 924433004: [telemetry]: Add idle% measurement unit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/perf/measurements/v8_gc_times_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/measurements/v8_gc_times.py
diff --git a/tools/perf/measurements/v8_gc_times.py b/tools/perf/measurements/v8_gc_times.py
index 9715c423dfcf8f700855a19a9431a201670e7be7..330939494d30bcbda7ce997d5dac28541728d852 100644
--- a/tools/perf/measurements/v8_gc_times.py
+++ b/tools/perf/measurements/v8_gc_times.py
@@ -109,7 +109,7 @@ class V8GCTimes(page_test.PageTest):
('Total idle task deadline overrun for %s idle tasks'
% v8_event_stat.result_description)))
results.AddValue(scalar.ScalarValue(results.current_page,
- '%s_percentage_idle' % v8_event_stat.result_name, '%',
+ '%s_percentage_idle' % v8_event_stat.result_name, 'idle%',
v8_event_stat.percentage_thread_duration_during_idle,
('Percentage of %s spent in idle time' %
v8_event_stat.result_description)))
@@ -136,7 +136,7 @@ class V8GCTimes(page_test.PageTest):
'Total idle task deadline overrun for all idle tasks garbage '
'collection events'))
results.AddValue(scalar.ScalarValue(results.current_page,
- 'v8_gc_total_percentage_idle', '%', gc_total_percentage_idle,
+ 'v8_gc_total_percentage_idle', 'idle%', gc_total_percentage_idle,
'Percentage of the thread duration of all garbage collection events '
'spent inside of idle tasks'))
« no previous file with comments | « no previous file | tools/perf/measurements/v8_gc_times_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698