Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index c34afdb42665d37f996bd815298c384bb45ea8b8..0b9a1ce00c8bba2a0b671dae998f2462303a64c8 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -5375,6 +5375,33 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| </summary> |
| </histogram> |
| +<histogram name="Enterprise.DomainWhitelistRegexFailureIndex" |
|
Ilya Sherman
2014/07/24 17:29:33
Now that you've associated an enum with this histo
|
| + enum="EnterpriseDomainRegex"> |
| + <owner>atwilson@chromium.org</owner> |
| + <summary> |
| + Tracks the index of the regex that caused an icu::RegexMatcher |
| + initialization failure, to help figure out the cause of |
| + http://crbug.com/365351. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.DomainWhitelistRegexFailureStatus" |
| + units="icu error"> |
| + <owner>atwilson@chromium.org</owner> |
| + <summary> |
| + Tracks the type of an icu::RegexMatcher initialization failure, to help |
| + figure out the cause of http://crbug.com/365351. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.DomainWhitelistRegexSuccess" enum="BooleanSuccess"> |
| + <owner>atwilson@chromium.org</owner> |
| + <summary> |
| + Tracks instances of IcuMatcher initialization, to help figure out the cause |
|
Ilya Sherman
2014/07/24 17:29:33
nit: Please update "IcuMatcher" -> "icu::RegexMatc
|
| + of http://crbug.com/365351. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="Enterprise.EnrolledPolicyHasDMToken" enum="Boolean"> |
| <owner>tnagel@chromium.org</owner> |
| <summary> |
| @@ -5426,6 +5453,14 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| </summary> |
| </histogram> |
| +<histogram name="Enterprise.PolicyHasVerifiedCachedKey" |
| + enum="BooleanValidKeyExists"> |
| + <owner>atwilson@chromium.org</owner> |
| + <summary> |
| + Boolean tracking whether there is a valid policy signing key on disk. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="Enterprise.PolicyInvalidations" |
| enum="EnterprisePolicyInvalidations"> |
| <owner>joaodasilva@chromium.org</owner> |
| @@ -5463,6 +5498,31 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| </summary> |
| </histogram> |
| +<histogram name="Enterprise.UserCloudPolicyStore.LoadStatus" |
| + enum="PolicyLoadStatus"> |
| + <owner>atwilson@chromium.org</owner> |
| + <summary> |
| + Result of the attempted policy load during profile initialization. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserCloudPolicyStore.LoadValidationStatus" |
| + enum="PolicyValidationStatus"> |
| + <owner>atwilson@chromium.org</owner> |
| + <summary> |
| + Result of validating the policy that has just been loaded from disk. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserCloudPolicyStore.StoreValidationStatus" |
| + enum="PolicyValidationStatus"> |
| + <owner>atwilson@chromium.org</owner> |
| + <summary> |
| + Result of validating the policy sent down from the server, before writing to |
| + disk. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="Enterprise.UserPolicyChromeOS.DelayInitialization" |
| units="milliseconds"> |
| <owner>joaodasilva@chromium.org</owner> |
| @@ -5512,6 +5572,35 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| <summary>Network error during OAuth2 access token fetch.</summary> |
| </histogram> |
| +<histogram name="Enterprise.UserPolicyValidationFailure" |
| + enum="ValidationFailures"> |
| + <owner>mnissler@chromium.org</owner> |
| + <summary>Source of policy validation errors on ChromeOS.</summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserPolicyValidationLoadStatus" |
| + enum="PolicyValidationStatus"> |
| + <owner>mnissler@chromium.org</owner> |
| + <summary> |
| + Validation result when loading user policy from the policy store. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserPolicyValidationStoreStatus" |
| + enum="PolicyValidationStatus"> |
| + <owner>mnissler@chromium.org</owner> |
| + <summary> |
| + Validation result when writing user policy to the policy store. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserSigninChoice" enum="SigninChoice"> |
| + <owner>atwilson@chromium.org</owner> |
| + <summary> |
| + Choice the user made when presented with enterprise signin dialog. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="Enterprise.WildcardLoginCheck.DelayPolicyTokenFetch" |
| units="milliseconds"> |
| <owner>joaodasilva@chromium.org</owner> |
| @@ -36024,6 +36113,11 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| <int value="1" label="Valid"/> |
| </enum> |
| +<enum name="BooleanValidKeyExists" type="int"> |
| + <int value="0" label="Valid Cached Key Found"/> |
| + <int value="1" label="No Valid Cached Key Found"/> |
| +</enum> |
| + |
| <enum name="BooleanWiped" type="int"> |
| <int value="0" label="Re-enabled"/> |
| <int value="1" label="Wiped out"/> |
| @@ -37264,6 +37358,20 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| </int> |
| </enum> |
| +<enum name="EnterpriseDomainRegex" type="int"> |
| + <summary>Which domain regex generated an ICU error.</summary> |
| + <int value="0" label="AOL"/> |
|
Ilya Sherman
2014/07/24 17:29:33
nit: Why is "AOL" capitalized, but the rest all in
|
| + <int value="1" label="googlemail"/> |
| + <int value="2" label="gmail"/> |
| + <int value="3" label="hotmail"/> |
| + <int value="4" label="live"/> |
| + <int value="5" label="mail.ru"/> |
| + <int value="6" label="msn"/> |
| + <int value="7" label="qq"/> |
| + <int value="8" label="yahoo"/> |
| + <int value="9" label="yandex"/> |
| +</enum> |
| + |
| <enum name="EnterpriseEnrollmentType" type="int"> |
| <summary> |
| Result of device enrollment as defined in |
| @@ -44628,6 +44736,27 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| <int value="5" label="5"/> |
| </enum> |
| +<enum name="PolicyLoadStatus" type="int"> |
| + <int value="0" label="Success"/> |
| + <int value="1" label="No Policy File"/> |
| + <int value="2" label="Load Error"/> |
| +</enum> |
| + |
| +<enum name="PolicyValidationStatus" type="int"> |
| + <int value="0" label="OK"/> |
| + <int value="1" label="Bad Initial Signature"/> |
| + <int value="2" label="Bad Signature"/> |
| + <int value="3" label="Policy Error Code"/> |
| + <int value="4" label="Payload Parse Error"/> |
| + <int value="5" label="Wrong Policy Type"/> |
| + <int value="6" label="Wrong Settings Entity ID"/> |
| + <int value="7" label="Bad Timestamp"/> |
| + <int value="8" label="Wrong Token"/> |
| + <int value="9" label="Wrong Username"/> |
| + <int value="10" label="Policy Parse Error"/> |
| + <int value="11" label="Bad Key Validation Signature"/> |
| +</enum> |
| + |
| <enum name="PostMergeVerificationOutcome" type="int"> |
| <int value="0" label="Undefined"/> |
| <int value="1" label="Succeeded"/> |
| @@ -46349,6 +46478,12 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| <int value="2" label="Dismiss"/> |
| </enum> |
| +<enum name="SigninChoice" type="int"> |
| + <int value="0" label="Cancel"/> |
| + <int value="1" label="Continue"/> |
| + <int value="2" label="New Profile"/> |
| +</enum> |
| + |
| <enum name="SigninFlowConfirmations" type="int"> |
| <int value="0" label="Shown"/> |
| <int value="1" label="OK"/> |
| @@ -48084,6 +48219,11 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
| <int value="5" label="Kiosk App"/> |
| </enum> |
| +<enum name="ValidationFailures" type="int"> |
| + <int value="0" label="DBus"/> |
| + <int value="1" label="Load Key"/> |
| +</enum> |
| + |
| <enum name="VariationSeedSignature" type="int"> |
| <int value="0" label="Signature Missing"/> |
| <int value="1" label="Signature Decode Failed"/> |