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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1234813004: [BlobAsync] Asynchronous Blob Construction Final Patch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blob-protocol-change
Patch Set: comments and rebase Created 4 years, 8 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 | « storage/storage_browser.gyp ('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 8ef73d675668c20de3b8002dec6a04a24ce582f5..05a4e97346d3756bd7a2e68ccd35745013f2e85c 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -50637,8 +50637,30 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Storage.Blob.Broken" units="BooleanBroken">
+ <owner>dmurph@chromium.org</owner>
+ <summary>
+ If a newly constructed blob is broken. See Storage.Blob.BrokenReason for a
+ the broken reasons.
+ </summary>
+</histogram>
+
+<histogram name="Storage.Blob.BrokenReason" units="BlobBrokenReason">
+ <owner>dmurph@chromium.org</owner>
+ <summary>
+ The reason a blob is broken, reported only for broken blobs upon
+ construction. See Storage.Blob.Broken for the breakdown of blobs broken vs
+ unbroken.
+ </summary>
+</histogram>
+
<histogram name="Storage.Blob.ExceededMemory" enum="Boolean">
<owner>dmurph@chromium.org</owner>
+ <obsolete>
+ Deprecated as of 3/2016. Use Storage.Blob.Broken to see the fraction of
+ blobs that are broken, and Storage.Blob.BrokenReason for the number of
+ broken blobs that are broken because of memory constraints.
+ </obsolete>
<summary>
True if a created blob exceeded the internal in-memory storage memory limit
for blobs.
@@ -60738,6 +60760,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="111" label="WSH_SEND_FRAME_DURING_BLOB_SEND"/>
<int value="112" label="RFH_UNEXPECTED_LOAD_START"/>
<int value="113" label="NMF_INVALID_ARGUMENT"/>
+ <int value="114" label="RFH_INVALID_ORIGIN_ON_COMMIT"/>
+ <int value="115" label="BDH_UUID_REGISTERED"/>
+ <int value="116" label="BDH_CONSTRUCTION_FAILED"/>
+ <int value="117" label="BDH_INVALID_OPERATION"/>
</enum>
<enum name="BadMessageReasonExtensions" type="int">
@@ -60825,6 +60851,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="5" label="Blacklist disabled."/>
</enum>
+<enum name="BlobBrokenReason" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="There is not enough memory to store this blob"/>
+ <int value="2" label="File write failed"/>
+ <int value="3" label="Source died in transit"/>
+ <int value="4" label="Blob dereferenced while building"/>
+ <int value="5" label="Referenced blob broken"/>
+</enum>
+
<enum name="BluetoothAvailability" type="int">
<int value="0" label="Unexpected error"/>
<int value="1" label="Not available"/>
@@ -60960,6 +60995,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="1" label="Notification click (within last 5 seconds)"/>
</enum>
+<enum name="BooleanBroken" type="int">
+ <int value="0" label="Not Broken"/>
+ <int value="1" label="Broken"/>
+</enum>
+
<enum name="BooleanCacheHit" type="int">
<int value="0" label="Miss"/>
<int value="1" label="Hit"/>
« no previous file with comments | « storage/storage_browser.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698