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

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

Issue 1283243002: Add UMA and Rappor metrics to capture URLs passed in at startup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments 1 Created 5 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 unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 Copyright 2015 The Chromium Authors. All rights reserved. 2 Copyright 2015 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 <rappor-configuration> 7 <rappor-configuration>
8 <!-- 8 <!--
9 This file is used to generate a comprehensive list of Chrome rappor metrics 9 This file is used to generate a comprehensive list of Chrome rappor metrics
10 along with a detailed description for each histogram. See the design doc at 10 along with a detailed description for each histogram. See the design doc at
(...skipping 13 matching lines...) Expand all
24 Stricter parameters for metrics collected from a broader population. 24 Stricter parameters for metrics collected from a broader population.
25 </summary> 25 </summary>
26 <parameters num-cohorts="128" bytes="1" hash-functions="2" fake-prob="0.5" 26 <parameters num-cohorts="128" bytes="1" hash-functions="2" fake-prob="0.5"
27 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25" 27 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25"
28 reporting-level="COARSE"/> 28 reporting-level="COARSE"/>
29 </rappor-parameters> 29 </rappor-parameters>
30 30
31 <rappor-parameters name="ETLD_PLUS_ONE"> 31 <rappor-parameters name="ETLD_PLUS_ONE">
32 <summary> 32 <summary>
33 Deprecated parameters for collecting the domain and registry of a URL from 33 Deprecated parameters for collecting the domain and registry of a URL from
34 UMA opt-in users. 34 UMA opt-in users. Should use UMA_RAPPOR_TYPE instead.
35 </summary> 35 </summary>
36 <parameters num-cohorts="128" bytes="16" hash-functions="2" fake-prob="0.5" 36 <parameters num-cohorts="128" bytes="16" hash-functions="2" fake-prob="0.5"
37 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25" 37 fake-one-prob="0.5" one-coin-prob="0.75" zero-coin-prob="0.25"
38 reporting-level="FINE"/> 38 reporting-level="FINE"/>
39 </rappor-parameters> 39 </rappor-parameters>
40 40
41 <rappor-parameters name="SAFEBROWSING_RAPPOR_TYPE"> 41 <rappor-parameters name="SAFEBROWSING_RAPPOR_TYPE">
42 <summary> 42 <summary>
43 Parameters for metrics related to Safe Browsing, collected from all user 43 Parameters for metrics related to Safe Browsing, collected from all user
44 with safe browsing enabled. 44 with safe browsing enabled.
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 </summary> 538 </summary>
539 </rappor-metric> 539 </rappor-metric>
540 540
541 <rappor-metric name="SoftwareReporter.FoundUwS" type="COARSE_RAPPOR_TYPE"> 541 <rappor-metric name="SoftwareReporter.FoundUwS" type="COARSE_RAPPOR_TYPE">
542 <owner>mad@chromium.org</owner> 542 <owner>mad@chromium.org</owner>
543 <summary> 543 <summary>
544 The IDs of unwanted software found by the software reporter tool. 544 The IDs of unwanted software found by the software reporter tool.
545 </summary> 545 </summary>
546 </rappor-metric> 546 </rappor-metric>
547 547
548 <rappor-metric name="Startup.BrowserLaunchURL" type="UMA_RAPPOR_TYPE">
549 <owner>rkaplow@chromium.org</owner>
550 <summary>
551 The eTLD+1 of a URL that was passed in from the command line when Chrome
552 is invoked. Note that this handles the case of a URL passed to Chrome
553 starting up, or when a running Chrome is given the message to open a new
554 URL.
555 </summary>
556 </rappor-metric>
557
548 <rappor-metric name="WebComponents.DocumentRegisterElement" 558 <rappor-metric name="WebComponents.DocumentRegisterElement"
549 type="ETLD_PLUS_ONE"> 559 type="ETLD_PLUS_ONE">
550 <owner>kojii@chromium.org</owner> 560 <owner>kojii@chromium.org</owner>
551 <summary> 561 <summary>
552 The host of a URL that used Document::RegisterElement(). 562 The host of a URL that used Document::RegisterElement().
553 </summary> 563 </summary>
554 </rappor-metric> 564 </rappor-metric>
555 565
556 <rappor-metric name="WebComponents.ElementCreateShadowRoot" 566 <rappor-metric name="WebComponents.ElementCreateShadowRoot"
557 type="ETLD_PLUS_ONE"> 567 type="ETLD_PLUS_ONE">
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 <flag>Bit 1: IS_REPEAT_VISIT</flag> 672 <flag>Bit 1: IS_REPEAT_VISIT</flag>
663 <summary> 673 <summary>
664 Bitfield of the state from an SSL warning interstitial. 674 Bitfield of the state from an SSL warning interstitial.
665 </summary> 675 </summary>
666 </flags-field> 676 </flags-field>
667 </rappor-metric> 677 </rappor-metric>
668 678
669 </rappor-metrics> 679 </rappor-metrics>
670 680
671 </rappor-configuration> 681 </rappor-configuration>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698