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

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 most of Nat'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
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 d2ea070c38f5f2dc46668134fec6bec9ff2d3b1f..a6946ebcaccecc0636cbad5be16692a6b4497265 100644
--- a/tools/telemetry/telemetry/results/buildbot_output_formatter.py
+++ b/tools/telemetry/telemetry/results/buildbot_output_formatter.py
@@ -53,7 +53,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)
@@ -72,7 +72,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,
@@ -88,7 +88,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,

Powered by Google App Engine
This is Rietveld 408576698