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

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

Issue 445513002: Add Drive.MetadataDBValidityCheckFailureReason UMA histogram (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix errors Created 6 years, 4 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 48c4b5647bffe386679dcc80f81e46d79291c622..8f7cc710e09bc6fc5a561c70fdbbdfa9a1abaee5 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -5289,6 +5289,16 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Drive.MetadataDBValidityCheckFailureReason"
+ enum="DriveMetadataDBValidityCheckFailureReason">
+ <owner>joshwoodward@google.com</owner>
+ <summary>
+ Reason of drive resource metadata database validity check failure. Recorded
+ when the validity check fails during Drive metadata initialization triggered
+ by profile initialization.
+ </summary>
+</histogram>
+
<histogram name="Drive.MetadataDBVersionBeforeUpgradeCheck">
<owner>joshwoodward@google.com</owner>
<summary>
@@ -37750,6 +37760,17 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="9" label="Cannot open existing DB. Created new DB."/>
</enum>
+<enum name="DriveMetadataDBValidityCheckFailureReason" type="int">
+ <int value="0" label="Invalid header"/>
+ <int value="1" label="Broken ID entry"/>
+ <int value="2" label="Broken entry"/>
+ <int value="3" label="Invalid local ID"/>
+ <int value="4" label="Invalid parent ID"/>
+ <int value="5" label="Broken child map"/>
+ <int value="6" label="Child entry count mismatch"/>
+ <int value="7" label="Iterator error"/>
+</enum>
+
<enum name="EAPInnerProtocol" type="int">
<int value="0" label="UNKNOWN"/>
<int value="1" label="NONE"/>

Powered by Google App Engine
This is Rietveld 408576698