Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 5acdc34863b66551e83f238dbae6b70a049ad04d..1aa4d3f3881f31d2011d189c9e830056a9bee34b 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -3071,6 +3071,47 @@ other types of suffix sets. |
| </summary> |
| </histogram> |
| +<histogram name="Enterprise.UserPolicyChromeOS.DelayInitialization" |
| + units="milliseconds"> |
| + <summary>Initialization delay due to loading the user policy cache.</summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserPolicyChromeOS.InitialFetch.ClientError" |
| + enum="EnterpriseDeviceManagementStatus"> |
|
jar (doing other things)
2013/09/03 16:50:18
I assume this is already defined.
Mattias Nissler (ping if slow)
2013/09/03 17:08:27
It is, and the presubmit checks pass.
|
| + <summary>Policy client error during initial policy fetch.</summary> |
| +</histogram> |
| + |
| +<histogram |
| + name="Enterprise.UserPolicyChromeOS.InitialFetch.DelayClientRegister" |
| + units="milliseconds"> |
| + <summary>Delay for registering the client with the policy server.</summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserPolicyChromeOS.InitialFetch.DelayOAuth2Token" |
| + units="milliseconds"> |
| + <summary>Delay for minting an OAuth2 acccess token.</summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserPolicyChromeOS.InitialFetch.DelayPolicyFetch" |
| + units="milliseconds"> |
| + <summary>Delay for fetching policy from the policy server.</summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserPolicyChromeOS.InitialFetch.DelayTotal" |
| + units="milliseconds"> |
| + <summary>Total delay for the initial policy fetch.</summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserPolicyChromeOS.InitialFetch.OAuth2Error" |
| + enum="GoogleServiceAuthError"> |
| + <summary>Service error during OAuth2 access token fetch.</summary> |
| +</histogram> |
| + |
| +<histogram name="Enterprise.UserPolicyChromeOS.InitialFetch.OAuth2NetworkError" |
| + enum="NetErrorCodes"> |
| + <summary>Network error during OAuth2 access token fetch.</summary> |
| +</histogram> |
| + |
| <histogram name="Event.CoalescedCount.Mouse"> |
| <summary>Number of Mouse events coalesced.</summary> |
| </histogram> |
| @@ -19891,6 +19932,22 @@ other types of suffix sets. |
| <int value="10" label="USER_SUPPRESSED"/> |
| </enum> |
| +<enum name="GoogleServiceAuthError" type="int"> |
| + <int value="0" label="NONE"/> |
| + <int value="1" label="INVALID_GAIA_CREDENTIALS"/> |
| + <int value="2" label="USER_NOT_SIGNED_UP"/> |
| + <int value="3" label="CONNECTION_FAILED"/> |
| + <int value="4" label="CAPTCHA_REQUIRED"/> |
| + <int value="5" label="ACCOUNT_DELETED"/> |
| + <int value="6" label="ACCOUNT_DISABLED"/> |
| + <int value="7" label="SERVICE_UNAVAILABLE"/> |
| + <int value="8" label="TWO_FACTOR"/> |
| + <int value="9" label="REQUEST_CANCELED"/> |
| + <int value="10" label="HOSTED_NOT_ALLOWED"/> |
| + <int value="11" label="UNEXPECTED_SERVICE_RESPONSE"/> |
| + <int value="12" label="SERVICE_ERROR"/> |
| +</enum> |
| + |
| <enum name="HttpAuthCount" type="int"> |
| <int value="0" label="Basic Start"/> |
| <int value="1" label="Basic Reject"/> |