Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 971bf2c5d6299c1189bbd51230d360cfc0e95be5..32945beee529768e95403876b204aa64a5100831 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -2588,6 +2588,47 @@ other types of suffix sets. |
| </summary> |
| </histogram> |
| +<histogram name="Enterprise.UserPolicyChromeOS.ClientError" |
|
bartfab (slow)
2013/08/30 10:04:40
In the code, this is "Enterprise.UserPolicyChromeO
Mattias Nissler (ping if slow)
2013/09/03 11:09:22
Done.
bartfab (slow)
2013/09/03 14:52:16
I think you uploaded an outdated CL. This comment
Mattias Nissler (ping if slow)
2013/09/03 15:24:38
According to the patch rietveld displays to me, Cl
|
| + enum="EnterpriseDeviceManagementStatus"> |
| + <summary>Policy client error during initial policy fetch.</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.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> |
| @@ -18611,6 +18652,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"/> |