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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 270673003: UMA metrics - number of accounts per profile and account reconciler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile error, out-of-order parameter Created 6 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:
Download patch
« no previous file with comments | « tools/metrics/actions/extract_actions.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 04892de6e684a90e23350387f8546182405635c8..4cb9520ed790eee3e989bd3c7505e3346249cdfa 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -26,7 +26,7 @@ three sections:
works.
Each histogram_suffixes tag lists the histograms that it affects. The complete
-list of histograms is computed by appending (or prepending - see blow) the
+list of histograms is computed by appending (or prepending - see below) the
histogram_suffixes suffix names to each of the affected histograms. For example,
define the following:
@@ -20539,6 +20539,15 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Profile.NumberOfAccountsPerProfile">
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ Counts the number of Google-managed accounts linked to a profile. This may
+ be counted multiple times per profile. Please review with the &quot;Show
+ user counts&quot; option enabled on the dashboard.
+ </summary>
+</histogram>
+
<histogram name="Profile.NumberOfManagedProfiles">
<owner>pam@chromium.org</owner>
<summary>
@@ -23408,6 +23417,30 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Signin.Reconciler.AddedToChrome">
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ After the first execution of the account reconciler, how many accounts were
+ added to the browser's token service because they were in the cookie jar.
+ </summary>
+</histogram>
+
+<histogram name="Signin.Reconciler.AddedToCookieJar">
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ After the first execution of the account reconciler, how many accounts were
+ added to the cookie jar because they were in the browser's token service.
+ </summary>
+</histogram>
+
+<histogram name="Signin.Reconciler.DifferentPrimaryAccounts">
+ <owner>mlerman@chromium.org</owner>
+ <summary>
+ After the first execution of the account reconciler, true if the token
+ service and cookie jar contained different primary accounts.
+ </summary>
+</histogram>
+
<histogram name="SimpleCache.App.CheckCRCResult" enum="CheckCRCResult">
<owner>Please list the metric's owners. Add more owner tags as needed.</owner>
<summary>
@@ -45617,6 +45650,18 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<affected-histogram name="Extensions.UpdateSource"/>
</histogram_suffixes>
+<histogram_suffixes name="Signin.Reconciler">
+ <suffix name="FirstRun"
+ label="First execution of the reconciler after the profile was loaded
+ or the new_profile_management flag was toggled."/>
+ <suffix name="SubsequentRun"
+ label="Execution of the reconciler triggered by some other change of
+ state."/>
+ <affected-histogram name="Signin.Reconciler.AddedToChrome"/>
+ <affected-histogram name="Signin.Reconciler.AddedToCookieJar"/>
+ <affected-histogram name="Signin.Reconciler.DifferentPrimaryAccounts"/>
+</histogram_suffixes>
+
<histogram_suffixes name="SocketType">
<suffix name="HTTPProxy" label="HTTP proxy socket"/>
<suffix name="SOCK" label="SOCKS socket"/>
« no previous file with comments | « tools/metrics/actions/extract_actions.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698