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

Unified Diff: tools/telemetry/telemetry/results/buildbot_output_formatter.py

Issue 439613003: Add Chart JSON processing to Telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Chris's comments Created 6 years, 4 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/telemetry/telemetry/results/chart_json.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/results/buildbot_output_formatter.py
diff --git a/tools/telemetry/telemetry/results/buildbot_output_formatter.py b/tools/telemetry/telemetry/results/buildbot_output_formatter.py
index cbe15b0e8afd0dbc86f85949d1d0c603bd9076e6..ea524e8c659587c3645d7c305e8623ffda3a7bc0 100644
--- a/tools/telemetry/telemetry/results/buildbot_output_formatter.py
+++ b/tools/telemetry/telemetry/results/buildbot_output_formatter.py
@@ -52,7 +52,7 @@ class BuildbotOutputFormatter(output_formatter.OutputFormatter):
return
buildbot_measurement_name, buildbot_trace_name = (
- value.GetBuildbotMeasurementAndTraceNameForPerPageResult())
+ value.GetChartAndTraceNameForPerPageResult())
self._PrintPerfResult(buildbot_measurement_name,
buildbot_trace_name,
buildbot_value, value.units, buildbot_data_type)
@@ -71,7 +71,7 @@ class BuildbotOutputFormatter(output_formatter.OutputFormatter):
return
buildbot_measurement_name, buildbot_trace_name = (
- value.GetBuildbotMeasurementAndTraceNameForComputedSummaryResult(
+ value.GetChartAndTraceNameForComputedSummaryResult(
self._trace_tag))
self._PrintPerfResult(buildbot_measurement_name,
buildbot_trace_name,
@@ -87,7 +87,7 @@ class BuildbotOutputFormatter(output_formatter.OutputFormatter):
buildbot_data_type = value.GetBuildbotDataType(
output_context=value_module.SUMMARY_RESULT_OUTPUT_CONTEXT)
buildbot_measurement_name, buildbot_trace_name = (
- value.GetBuildbotMeasurementAndTraceNameForComputedSummaryResult(
+ value.GetChartAndTraceNameForComputedSummaryResult(
self._trace_tag))
self._PrintPerfResult(
buildbot_measurement_name,
« no previous file with comments | « no previous file | tools/telemetry/telemetry/results/chart_json.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698