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

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

Issue 494633003: UMA: How often are different network error screens encountered during OOBE (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after review Created 6 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:
Download patch
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('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 57dd27f1a253761edc75c1e3fe032f1299a00fe4..1a769d776c7fc7aefb290c38c0f90fac5ad16abe 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -21635,6 +21635,55 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>Time from boot to sign-in completed.</summary>
</histogram>
+<histogram name="OOBE.ErrorScreensTime.Enrollment" units="milliseconds">
+ <owner>rsorokin@chromium.org</owner>
+ <summary>
+ Time spent on error screens during enrollment or autoenrollment.
+ </summary>
+</histogram>
+
+<histogram name="OOBE.ErrorScreensTime.Signin" units="milliseconds">
+ <owner>rsorokin@chromium.org</owner>
+ <summary>Time spent on error screens during signin.</summary>
+</histogram>
+
+<histogram name="OOBE.ErrorScreensTime.Supervised" units="milliseconds">
+ <owner>rsorokin@chromium.org</owner>
+ <summary>
+ Time spent on error screens during supervised user creation.
+ </summary>
+</histogram>
+
+<histogram name="OOBE.ErrorScreensTime.Update" units="milliseconds">
+ <owner>rsorokin@chromium.org</owner>
+ <summary>Time spent on error screens during update.</summary>
+</histogram>
+
+<histogram name="OOBE.NetworkErrorShown.Enrollment" enum="NetworkErrorType">
+ <owner>rsorokin@google.com</owner>
+ <summary>
+ Number of times error screen has appeared during enrollment or
+ autoenrollment.
+ </summary>
+</histogram>
+
+<histogram name="OOBE.NetworkErrorShown.Signin" enum="NetworkErrorType">
+ <owner>rsorokin@google.com</owner>
+ <summary>Number of times error screen has appeared during signin.</summary>
+</histogram>
+
+<histogram name="OOBE.NetworkErrorShown.Supervised" enum="NetworkErrorType">
+ <owner>rsorokin@google.com</owner>
+ <summary>
+ Number of times error screen has appeared during supervised user creation.
+ </summary>
+</histogram>
+
+<histogram name="OOBE.NetworkErrorShown.Update" enum="NetworkErrorType">
+ <owner>rsorokin@google.com</owner>
+ <summary>Number of times error screen has appeared during update.</summary>
+</histogram>
+
<histogram name="OOBE.StepCompletionTime" units="milliseconds">
<owner>merkulova@chromium.org</owner>
<summary>Time spent on specific OOBE screen.</summary>
@@ -48152,6 +48201,15 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="1" label="User Disconnect"/>
</enum>
+<enum name="NetworkErrorType" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="Portal"/>
+ <int value="2" label="Offline"/>
+ <int value="3" label="Proxy"/>
+ <int value="4" label="AuthExtTimeout"/>
+ <int value="5" label="None"/>
+</enum>
+
<enum name="NetworkLocationRequestEvent" type="int">
<int value="0" label="REQUEST_START"/>
<int value="1" label="REQUEST_CANCEL"/>
@@ -56406,6 +56464,17 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="Net.ProxyResolver.ExecutionTime"/>
</histogram_suffixes>
+<histogram_suffixes name="NetworkErrors" separator=".">
+ <suffix name="AuthExtTimeout" label="with the last error AuthExtTimeout"/>
+ <suffix name="Offline" label="with the last error Offline"/>
+ <suffix name="Portal" label="with the last error Portal"/>
+ <suffix name="Proxy" label="with the last error Proxy"/>
+ <affected-histogram name="OOBE.ErrorScreensTime.Enrollment"/>
+ <affected-histogram name="OOBE.ErrorScreensTime.Signin"/>
+ <affected-histogram name="OOBE.ErrorScreensTime.Supervised"/>
+ <affected-histogram name="OOBE.ErrorScreensTime.Update"/>
+</histogram_suffixes>
+
<histogram_suffixes name="NewTabPageProviders" separator=".">
<suffix name="client" label="Suggestions coming from the client."/>
<suffix name="client0" label="Suggestions coming from the client source 0."/>
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698