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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2666793002: [Sync] Record histogram of ModelTypeStoreBackend initialization result (Closed)
Patch Set: Created 3 years, 10 months 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 | « components/sync/model_impl/model_type_store_backend.cc ('k') | 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 ffc09e3accfa81de63a9ad18d073ab000415ab35..1ec97c19caef820c2580b8b6aab989f85175909b 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -67445,6 +67445,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Sync.ModelTypeStoreInitResult"
+ enum="SyncModelTypeStoreInitResult">
+ <owner>pavely@chromium.org</owner>
+ <summary>
+ Records the result of ModelTypeStoreBackend initialization. Used to analyze
+ frequency and causes of backend initialization failures.
+ </summary>
+</histogram>
+
<histogram name="Sync.NigoriMigrationState" enum="SyncNigoriMigrationState">
<owner>zea@chromium.org</owner>
<summary>Breakdown of sync's nigori node keystore migration state.</summary>
@@ -107593,6 +107602,18 @@ value.
<int value="38" label="Reading List"/>
</enum>
+<enum name="SyncModelTypeStoreInitResult" type="int">
+ <int value="0" label="Success"/>
+ <int value="1" label="Not Found"/>
+ <int value="2" label="Corruption"/>
+ <int value="3" label="Not Supported"/>
+ <int value="4" label="Invalid Argument"/>
+ <int value="5" label="IO Error"/>
+ <int value="6" label="Reading'parsing schema descriptor failed"/>
maxbogue 2017/01/31 01:22:14 Maybe just have this be "Schema descriptor issue"
pavely 2017/01/31 02:22:25 Done.
+ <int value="7" label="Migration failed"/>
maxbogue 2017/01/31 01:22:14 Here and below you switch to having the second wor
pavely 2017/01/31 02:22:25 Done.
+ <int value="8" label="Unknown error"/>
+</enum>
+
<enum name="SyncNigoriMigrationResult" type="int">
<int value="0" label="Failed to set default encryption key"/>
<int value="1" label="Failed to set nondefault encryption key"/>
« no previous file with comments | « components/sync/model_impl/model_type_store_backend.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698