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

Side by Side Diff: docs/how-to-write-metrics.md

Issue 2424933003: Rename ValueSet* to HistogramSet*. (Closed)
Patch Set: fix Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | tracing/bin/results2json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 Timeline-Based Measurement v2 is a system for computing metrics from traces. 6 Timeline-Based Measurement v2 is a system for computing metrics from traces.
7 7
8 A TBM2 metric is a Javascript function that takes a trace Model and produces 8 A TBM2 metric is a Javascript function that takes a trace Model and produces
9 Histograms. 9 Histograms.
10 10
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 then it should use RelatedValueSet or RelatedValueMap; if it does not want to 161 then it should use RelatedValueSet or RelatedValueMap; if it does not want to
162 monitor changes in those numbers, then the TBM2 maintainers can add a 162 monitor changes in those numbers, then the TBM2 maintainers can add a
163 HistogramDiagnostic that supports merging. 163 HistogramDiagnostic that supports merging.
164 164
165 165
166 Consumers of Histograms 166 Consumers of Histograms
167 ======================= 167 =======================
168 168
169 Histograms are consumed by 169 Histograms are consumed by
170 170
171 * [value-set-table](/tracing/tracing/value/ui/value-set-table.html) in both 171 * [histogram-set-table](/tracing/tracing/value/ui/histogram_set_table.html) in
172 results2.html and the Metrics side panel in trace viewer, 172 both results2.html and the Metrics side panel in trace viewer,
173 * the [dashboard](https://chromeperf.appspot.com) indirectly via their statisti cs. 173 * the [dashboard](https://chromeperf.appspot.com) indirectly via their statisti cs.
174 174
175 Currently, telemetry discards Histograms and Diagnostics, and only passes their 175 Currently, telemetry discards Histograms and Diagnostics, and only passes their
176 statistics scalars to the dashboard. Histograms and their Diagnostics will be 176 statistics scalars to the dashboard. Histograms and their Diagnostics will be
177 passed directly to the dashboard early 2017. 177 passed directly to the dashboard early 2017.
OLDNEW
« no previous file with comments | « no previous file | tracing/bin/results2json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698