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

Unified Diff: scripts/slave/performance_log_processor.py

Issue 545803002: Update buildbots to parse new telemetry JSON format. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Added unit tests and removed debugging code Created 6 years, 3 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 | scripts/slave/results_dashboard.py » ('j') | scripts/slave/results_dashboard.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/performance_log_processor.py
diff --git a/scripts/slave/performance_log_processor.py b/scripts/slave/performance_log_processor.py
index 5be386aded4d1fcd9e538c401f8c414145e874f9..29682f508ecdbcacdf9b6fb5f7f8846ae3cb41af 100644
--- a/scripts/slave/performance_log_processor.py
+++ b/scripts/slave/performance_log_processor.py
@@ -112,6 +112,10 @@ class PerformanceLogProcessor(object):
self._percentiles = [.1, .25, .5, .75, .90, .95, .99]
+ def IsChartJson(self): # pylint: disable=R0201
+ """This is not the new telemetry --chartjson output format."""
+ return False
+
def PerformanceLogs(self):
if not self._finalized:
self._FinalizeProcessing()
« no previous file with comments | « no previous file | scripts/slave/results_dashboard.py » ('j') | scripts/slave/results_dashboard.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698