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

Side by Side Diff: tools/metrics/ukm/ukm.xml

Issue 2857333002: [TTS] Write initial Tap-features to Ranker. (Closed)
Patch Set: Added an entry for CS and metrics written to ukm.xml. Created 3 years, 7 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 | « components/ukm/ukm_service.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2017 The Chromium Authors. All rights reserved. 2 Copyright 2017 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is used to generate a comprehensive list of Chrome UKM metrics 8 This file is used to generate a comprehensive list of Chrome UKM metrics
9 along with a detailed description for each metric. 9 along with a detailed description for each metric.
10 10
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 </summary> 152 </summary>
153 </metric> 153 </metric>
154 <metric name="ServerType"> 154 <metric name="ServerType">
155 <summary> 155 <summary>
156 Field's |ServerFieldType| returned by server. See 156 Field's |ServerFieldType| returned by server. See
157 |AutofillField.server_type()|. 157 |AutofillField.server_type()|.
158 </summary> 158 </summary>
159 </metric> 159 </metric>
160 </event> 160 </event>
161 161
162 <event name="ContextualSearch">
163 <owner>donnd@chromium.org</owner>
164 <summary>
165 Metrics related to a Contextual Search Tap event on a page, for use with
166 Ranker. These metrics are recorded each time the user triggers the
167 Contextual Search UI via a tap gesture (when enabled).
168 </summary>
169 <metric name="DURATION_AFTER_SCROLL_MS">
170 <summary>
171 Duration in MS between showing the UI and a subsequent scroll event, or
172 not recorded if there was no subsequent scroll.
173 </summary>
174 </metric>
175 <metric name="DURATION_BEFORE_SCROLL_MS">
Donn Denman 2017/05/19 15:06:01 One quick comment -- these upper-case names seem v
176 <summary>
177 Duration in MS between showing the most recent scroll event and showing
178 the UI, or 0 if no previous scroll event occurred.
179 </summary>
180 </metric>
181 <metric name="OUTCOME_WAS_PANEL_OPENED">
182 <summary>
183 Whether the user opened the overlay panel. This is the primary outcome
184 metric.
185 </summary>
186 </metric>
187 <metric name="OUTCOME_WAS_QUICK_ACTION_CLICKED">
188 <summary>
189 Whether the user clicked within the overlay panel when a Quick-Action was
190 shown. This is a secondary outcome metric.
191 </summary>
192 </metric>
193 <metric name="OUTCOME_WAS_QUICK_ANSWER_SEEN">
194 <summary>
195 Whether the user could see a Quick-Answer caption within the overlay
196 panel. This is a tertiary outcome metric.
197 </summary>
198 </metric>
199 <metric name="PREVIOUS_28DAY_CTR_PERCENT">
200 <summary>
201 The CTR of the overlay panel for this user, aggregated over a previous 28
202 day period, expressed as an integer between 0-99.
203 </summary>
204 </metric>
205 <metric name="PREVIOUS_28DAY_IMPRESSIONS_COUNT">
206 <summary>
207 The count of views of the overlay panel for this user, aggregated over a
208 previous 28 day period.
209 </summary>
210 </metric>
211 <metric name="PREVIOUS_WEEK_CTR_PERCENT">
212 <summary>
213 The CTR of the overlay panel for this user, aggregated over the previous
214 week, expressed as an integer between 0-99.
215 </summary>
216 </metric>
217 <metric name="PREVIOUS_WEEK_IMPRESSIONS_COUNT">
218 <summary>
219 The count of views of the overlay panel for this user, aggregated over the
220 previous week.
221 </summary>
222 </metric>
223 <metric name="SCREEN_TOP_DPS">
224 <summary>
225 The location of the tap relative to the top of the screen, expressed in
226 DPs.
227 </summary>
228 </metric>
229 <metric name="WAS_SCREEN_BOTTOM">
230 <summary>
231 The location of the tap relative to the bottom of the screen, expressed as
232 an integer with 0 meaning not at the bottom and 1 meaning at the bottom.
233 </summary>
234 </metric>
235 </event>
236
162 <event name="PageLoad" singular="True"> 237 <event name="PageLoad" singular="True">
163 <owner>bmcquade@chromium.org</owner> 238 <owner>bmcquade@chromium.org</owner>
164 <summary> 239 <summary>
165 Recorded when Pageload observer events fire. 240 Recorded when Pageload observer events fire.
166 </summary> 241 </summary>
167 <metric name="DocumentTiming.NavigationToDOMContentLoadedEventFired"> 242 <metric name="DocumentTiming.NavigationToDOMContentLoadedEventFired">
168 <summary> 243 <summary>
169 Time from navigation to dom content loaded in ms. 244 Time from navigation to dom content loaded in ms.
170 </summary> 245 </summary>
171 </metric> 246 </metric>
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 <metric name="DeclineCount"/> 294 <metric name="DeclineCount"/>
220 <metric name="EventType"/> 295 <metric name="EventType"/>
221 <metric name="IgnoreCount"/> 296 <metric name="IgnoreCount"/>
222 <metric name="RankerResponse"/> 297 <metric name="RankerResponse"/>
223 <metric name="RankerVersion"/> 298 <metric name="RankerVersion"/>
224 <metric name="SourceLanguage"/> 299 <metric name="SourceLanguage"/>
225 <metric name="TargetLanguage"/> 300 <metric name="TargetLanguage"/>
226 </event> 301 </event>
227 302
228 </ukm-configuration> 303 </ukm-configuration>
OLDNEW
« no previous file with comments | « components/ukm/ukm_service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698