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

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

Issue 2857283002: Add memory pressure listener to Blob storage (Closed)
Patch Set: Rename constant, use base::Uma function and add base attribute. Created 3 years, 7 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/common/blob_storage/blob_storage_constants.h ('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 866a70e3c673610dab0e7f5b177dea7a35020a68..e14c20c32c76cfc5b299cefb46a4f45daf6018ce 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -70617,6 +70617,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram base="true" name="Storage.Blob.SizeEvictedToDiskInKB" units="KB">
+ <owner>ssid@chromium.org</owner>
+ <summary>Records the total size of in-memory blobs evicted to disk.</summary>
+</histogram>
+
<histogram name="Storage.Blob.StorageSizeAfterAppend" units="KB">
<owner>dmurph@chromium.org</owner>
<summary>
@@ -127301,6 +127306,18 @@ from previous Chrome versions.
<affected-histogram name="Storage.BlobItemSize.BlobSlice"/>
</histogram_suffixes>
+<histogram_suffixes name="Storage.BlobEvictReason" separator=".">
+ <suffix name="OnMemoryPressure"
+ label="Eviction was triggered because of memory pressure signal."/>
+ <suffix name="SizeExceededMaxDiskSpace"
+ label="Eviction was triggered because the total size exceeded maximum
+ available disk space"/>
+ <suffix name="SizeExceededInMemoryLimit"
+ label="Eviction was triggered because the total size exceeded maximum
+ in memory size allwed"/>
+ <affected-histogram name="Storage.Blob.SizeEvictedToDiskInKB"/>
+</histogram_suffixes>
+
<histogram_suffixes name="StunPingInternal" separator=".">
<suffix name="0ms" label="0ms between requests"/>
<suffix name="5ms" label="5ms between requests"/>
« no previous file with comments | « storage/common/blob_storage/blob_storage_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698