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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 99783011: Add histograms definitions for windows enterprise checks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « no previous file | 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 445d0493c2316c70a978db7fc7df24fa9ee01e44..bf70afd25c57d39abfefa531d2d74bf262098296 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3589,6 +3589,24 @@ other types of suffix sets.
<summary>Network error during OAuth2 access token fetch.</summary>
</histogram>
+<histogram name="EnterpriseCheck.DomainBindSucceeded" enum="BooleanEnabled">
Alexei Svitkine (slow) 2013/12/19 19:03:29 It sounds like BooleanSuccess is the better enum t
pastarmovj 2013/12/20 10:55:10 Done.
+ <summary>Whether we were able to contact the AD Domain Controller.</summary>
jar (doing other things) 2013/12/18 19:13:34 Prose like this are often confusing, as it is hard
pastarmovj 2013/12/19 10:50:48 In this particular case I think the true/false or
+</histogram>
+
+<histogram name="EnterpriseCheck.DomainCheckFailed" enum="EnterpriseCheckError">
+ <summary>
+ Enum of possible things that can fail while checking for enterprise env.
Alexei Svitkine (slow) 2013/12/19 19:03:29 Can you mention when this is logged (i.e. when is
pastarmovj 2013/12/20 10:55:10 Done.
+ </summary>
+</histogram>
+
+<histogram name="EnterpriseCheck.InDomain" enum="BooleanEnabled">
+ <summary>Whether the machine is part of an AD domain.</summary>
Alexei Svitkine (slow) 2013/12/19 19:03:29 Mention when this is logged.
pastarmovj 2013/12/20 10:55:10 Done.
+</histogram>
+
+<histogram name="EnterpriseCheck.OSType" enum="OsSuite">
+ <summary>The rough Windows suite we are runnnig on.</summary>
Alexei Svitkine (slow) 2013/12/19 19:03:29 Mention when this is logged.
pastarmovj 2013/12/20 10:55:10 Done.
+</histogram>
+
<histogram name="Event.CoalescedCount.Mouse">
<summary>Number of Mouse events coalesced.</summary>
</histogram>
@@ -22995,6 +23013,11 @@ other types of suffix sets.
<int value="4" label="TTLS"/>
</enum>
+<enum name="EnterpriseCheckError" type="int">
+ <int value="0" label="Cound not get net join info."/>
+ <int value="1" label="Cound not bind to domain controller."/>
+</enum>
+
<enum name="EnterpriseDeviceManagementStatus" type="int">
<summary>
Status codes produced by DeviceManagementService for requests made to the
@@ -27845,6 +27868,12 @@ other types of suffix sets.
<int value="34" label="ERANGE">Numerical result out of range</int>
</enum>
+<enum name="OsSuite" type="int">
+ <int value="0" label="Windows Home Edition"/>
+ <int value="1" label="Windows Proffesional Edition (or better)"/>
+ <int value="2" label="Windows Server Edition"/>
+</enum>
+
<enum name="OSXExceptionHandlerEvents" type="int">
<int value="0" label="EXCEPTION_ACCESSIBILITY">
Object does not support accessibility attributes
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698