diff options
author | lipalani@chromium.org <lipalani@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 15:48:31 +0000 |
---|---|---|
committer | lipalani@chromium.org <lipalani@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 15:48:31 +0000 |
commit | 01ae70df9c0295ee4a6e28d37368484068813a31 (patch) | |
tree | 1355344f805a8b9cbac98ebc21d93154a66b92ea /tools/metrics | |
parent | 7e2e1151a16a17ddfbfd741afe9b17fc47b5e662 (diff) | |
download | chromium_src-01ae70df9c0295ee4a6e28d37368484068813a31.zip chromium_src-01ae70df9c0295ee4a6e28d37368484068813a31.tar.gz chromium_src-01ae70df9c0295ee4a6e28d37368484068813a31.tar.bz2 |
UMA log the count of clients with auth error and clients that have fixed the auth error.
BUG=315256
R=asvitkine@chromium.org, rlarocque@chromium.org, rlp@chromium.org
Review URL: https://codereview.chromium.org/59623006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233620 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/metrics')
-rw-r--r-- | tools/metrics/histograms/histograms.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml index e436151..87966a3 100644 --- a/tools/metrics/histograms/histograms.xml +++ b/tools/metrics/histograms/histograms.xml @@ -18486,6 +18486,13 @@ other types of suffix sets. </summary> </histogram> +<histogram name="Sync.SyncAuthError" enum="SyncAuthError"> + <summary> + Counts the number of times sync clients have encountered an auth error and + number of times auth errors are fixed. + </summary> +</histogram> + <histogram name="SyncedNotification.Actions" enum="SyncedNotificationActionType"> <summary> @@ -28425,6 +28432,12 @@ other types of suffix sets. <int value="3" label="Attempted"/> </enum> +<enum name="SyncAuthError" type="int"> + <int value="0" + label="Number of times clients have encountered an Auth error."/> + <int value="1" label="Number of times clients have fixed an auth error."/> +</enum> + <enum name="SyncBackendInitializeRestoreState" type="int"> <int value="0" label="Expected restored types and found some"/> <int value="1" label="Expected restored types but found none"/> |