| OLD | NEW |
| 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. | 3 found in the LICENSE file. |
| 4 --> | 4 --> |
| 5 | 5 |
| 6 # Metrics Results UI | 6 # Metrics Results UI |
| 7 | 7 |
| 8 This document assumes familiarity with the concepts introduced in | 8 This document assumes familiarity with the concepts introduced in |
| 9 [how-to-write-metrics](/docs/how-to-write-metrics.md). | 9 [how-to-write-metrics](/docs/how-to-write-metrics.md). |
| 10 | 10 |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 | 323 |
| 324 After the header row, there will be one row for each of the leaf Histograms in | 324 After the header row, there will be one row for each of the leaf Histograms in |
| 325 the Grouping Tree. For example, if you group only by Histogram name, then there | 325 the Grouping Tree. For example, if you group only by Histogram name, then there |
| 326 will be as many value rows as there are distinct Histogram names in the | 326 will be as many value rows as there are distinct Histogram names in the |
| 327 displayed HistogramSet. | 327 displayed HistogramSet. |
| 328 | 328 |
| 329 The columns will contain | 329 The columns will contain |
| 330 * Histogram name and units | 330 * Histogram name and units |
| 331 * summary statistics as configured by the metrics that produced the Histograms | 331 * summary statistics as configured by the metrics that produced the Histograms |
| 332 (avg, stddev, min, max, etc.), | 332 (avg, stddev, min, max, etc.), |
| 333 * TelemetryInfo fields (benchmarkName, storyName, etc.). | 333 * HistogramGrouping values. |
| 334 | 334 |
| 335  | 336 ](/docs/images/metrics-results-ui-download-csv.png) |
| 337 | 337 |
| 338 ### The Show All Checkbox | 338 ### The Show All Checkbox |
| 339 | 339 |
| 340 By default, this checkbox is unchecked so that the table only displays | 340 By default, this checkbox is unchecked so that the table only displays |
| 341 Histograms that are source nodes in the metric graphical model. | 341 Histograms that are source nodes in the metric graphical model. |
| 342 Check this checkbox in order to show all Histograms, including those that are | 342 Check this checkbox in order to show all Histograms, including those that are |
| 343 not source nodes in the metric graphical model. | 343 not source nodes in the metric graphical model. |
| 344 | 344 |
| 345  | 346 ](/docs/images/metrics-results-ui-show-all.png) |
| OLD | NEW |