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

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

Issue 812843005: [Storage] Added histograms for blob storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleaner windows compile fix Created 5 years, 11 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 5b4ba5761a84f8399da065b7e4b6e26918cb8dd1..220c82f946119d82be061fa985af693d66c1ea8f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -36163,6 +36163,39 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Storage.Blob.ExceededMemory" enum="Boolean">
+ <owner>dmurph@chromium.org</owner>
+ <summary>
+ True if a created blob exceeded the internal in-memory storage memory limit
+ for blobs.
+ </summary>
+</histogram>
+
+<histogram name="Storage.Blob.StorageSizeAfterAppend" units="KB">
+ <owner>dmurph@chromium.org</owner>
+ <summary>
+ Records the total in-memory storage size of blobs before a blob item is
+ appended. Can be subtracted by Storage.Blob.StorageSizeBeforeAppend to find
+ the true distribution of blob storage sizes.
+ </summary>
+</histogram>
+
+<histogram name="Storage.Blob.StorageSizeBeforeAppend" units="KB">
+ <owner>dmurph@chromium.org</owner>
+ <summary>
+ Records the total in-memory storage size of blobs before a blob item is
+ appended. Can be subtracted from Storage.Blob.StorageSizeAfterAppend to
+ find the true distribution of blob storage sizes.
+ </summary>
+</histogram>
+
+<histogram name="Storage.BlobItemSize" units="KB">
+ <owner>dmurph@chromium.org</owner>
+ <summary>
+ The size in KB of items (or parts of items) appended to blobs.
+ </summary>
+</histogram>
+
<histogram name="Suggestions.FailedRequestErrorCode" enum="NetErrorCodes">
<owner>mathp@chromium.org</owner>
<summary>
@@ -62088,6 +62121,14 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="StartupTimeBomb.Alarm"/>
</histogram_suffixes>
+<histogram_suffixes name="Storage.BlobAppendableItems" separator=".">
+ <suffix name="Bytes" label="Appending bytes."/>
+ <suffix name="File" label="Appending a file."/>
+ <suffix name="FileSystem" label="Appending a filesystem object."/>
+ <suffix name="Blob" label="Appending a blob."/>
+ <affected-histogram name="Storage.BlobItemSize"/>
+</histogram_suffixes>
+
<histogram_suffixes name="SyzygyStartupTime">
<suffix name="PreReadEnabled"/>
<suffix name="PreReadDisabled"/>
« storage/browser/blob/blob_storage_context.cc ('K') | « storage/browser/blob/blob_storage_context.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698