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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1130603006: Added histograms for tracking new user's priority prefs sync time and results. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 5 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 | « chrome/browser/chromeos/login/screens/user_image_screen.cc ('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 b13b369b4f61b5c71b0575e4c7a6cbc9620bfcd9..73ea4dfc198ac5ff447a25c2be2e60954c87cb98 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -4084,14 +4084,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</histogram>
<histogram name="CrosFirstRun.DialogShown">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>dzhioev@chromium.org</owner>
<summary>
Records the number of times when first-run dialog was shown.
</summary>
</histogram>
<histogram name="CrosFirstRun.FurthestStep">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>dzhioev@chromium.org</owner>
<summary>
Index of furthest step that was reached during tutorial. Since order of
steps could change eventially and new steps could apear we use index here
@@ -4100,23 +4100,23 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</histogram>
<histogram name="CrosFirstRun.TimeSpent" units="ms">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>dzhioev@chromium.org</owner>
<summary>The total time that user spent on first-run tutorial.</summary>
</histogram>
<histogram name="CrosFirstRun.TimeSpentOnStep" units="ms">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>dzhioev@chromium.org</owner>
<summary>The time that user spent on some step of tutorial.</summary>
</histogram>
<histogram name="CrosFirstRun.TutorialCompletion"
enum="CrosFirstRunTutorialCompletionType">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>dzhioev@chromium.org</owner>
<summary>Tracks the way how user left tutorial.</summary>
</histogram>
<histogram name="CrosFirstRun.TutorialLaunched">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>dzhioev@chromium.org</owner>
<summary>
Records the number of times when first-run tutorial has been launched.
</summary>
@@ -14281,6 +14281,20 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Login.NewUserPriorityPrefsSyncResult"
+ enum="NewUserPriorityPrefsSyncResult">
+ <owner>dzhioev@chromeos.org</owner>
+ <summary>Records whether a new user's priority prefs sync timed out.</summary>
+</histogram>
+
+<histogram name="Login.NewUserPriorityPrefsSyncTime" units="milliseconds">
+ <owner>dzhioev@chromeos.org</owner>
+ <summary>
+ Time spent waiting for priority preferences to sync after new user sign in.
+ The operation will time out after 10s.
+ </summary>
+</histogram>
+
<histogram name="Login.PolicyFilesStatePerBoot" enum="LoginPolicyFilesState">
<owner>cmasone@chromium.org</owner>
<summary>The state of Chrome OS owner key and device policy files.</summary>
@@ -58675,6 +58689,11 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="6" label="URL blocked for supervised user"/>
</enum>
+<enum name="NewUserPriorityPrefsSyncResult" type="int">
+ <int value="0" label="Succeeded"/>
+ <int value="1" label="Timed out"/>
+</enum>
+
<enum name="NotificationActionType" type="int">
<int value="0" label="Unknown"/>
<int value="1" label="Notification added"/>
« no previous file with comments | « chrome/browser/chromeos/login/screens/user_image_screen.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698