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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1940623002: [Blob] Added error reporting metrics to invalid message errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2704
Patch Set: Created 4 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 | « content/browser/blob_storage/blob_dispatcher_host.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 f965cd76d802049bbc498f8e4132a77405cc903b..72ede5b07bc55ff02ad8a93c4b0627b0dfd61a15 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -51347,6 +51347,24 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Storage.Blob.InvalidReference" enum="RefcountOperation">
+ <owner>dmurph@chromium.org</owner>
+ <summary>
+ Counts the number of times we have an invalid refcount operation. An invalid
+ increment means the blob didn't exist, and an invalid decrement means we
+ don't have any record of the blob in our host.
+ </summary>
+</histogram>
+
+<histogram name="Storage.Blob.InvalidURLRegister" enum="RefcountOperation">
+ <owner>dmurph@chromium.org</owner>
+ <summary>
+ Counts the number of times we have an invalid url registration operation. An
+ invalid increment means the blob isn't in use by the host yet or the url is
+ already mapped. An invalid decrement means the url isn't registered.
+ </summary>
+</histogram>
+
<histogram name="Storage.Blob.ItemCount" units="Blob Items">
<owner>dmurph@chromium.org</owner>
<summary>
@@ -81290,6 +81308,11 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="9" label="DownloadError"/>
</enum>
+<enum name="RefcountOperation" type="int">
+ <int value="0" label="Decrement"/>
+ <int value="1" label="Increment"/>
+</enum>
+
<enum name="RemotePlaybackDeviceType" type="int">
<int value="0" label="Cast Generic Media Player"/>
<int value="1" label="Cast YouTube Player"/>
« no previous file with comments | « content/browser/blob_storage/blob_dispatcher_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698