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

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

Issue 2624123002: Add UMA histograms to AsyncResourceHandler to track content size. (Closed)
Patch Set: remove not used entry in histogram.xml Created 3 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
« no previous file with comments | « content/browser/loader/async_resource_handler.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 78a0d5c2e7dc58675eccfbc51a9fbf4bfedf9dcd..d55ad23f909862df9a17ca616a5e05b56ef6bafa 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -34744,6 +34744,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Net.ResourceLoader.ExpectedContentSizeResult"
+ enum="ResourceLoaderExpectedContentSizeResult">
+ <owner>maksim.sisov@intel.com</owner>
+ <owner>mmenke@chromium.org</owner>
+ <summary>
+ Records how many times expected content size equals/less/more than size of
+ read body/buffer or content size is unkown. Recorded for each resource load.
+ </summary>
+</histogram>
+
<histogram name="Net.ResourceLoader.InliningStatus"
enum="ResourceLoaderInliningStatus">
<owner>tzik@chromium.org</owner>
@@ -102936,6 +102946,15 @@ value.
<int value="1" label="Has client"/>
</enum>
+<enum name="ResourceLoaderExpectedContentSizeResult" type="int">
+ <int value="0" label="EQ_RESPONSE_BODY"/>
+ <int value="1" label="EQ_RESPONSE_BODY_GT_EQ_BUFFER_SIZE"/>
+ <int value="2" label="GT_EQ_BUFFER_SIZE"/>
+ <int value="3" label="LT_RESPONSE_BODY"/>
+ <int value="4" label="GT_RESPONSE_BODY"/>
+ <int value="5" label="UNKNOWN"/>
+</enum>
+
<enum name="ResourceLoaderInliningStatus" type="int">
<int value="0" label="Applicable"/>
<int value="1" label="EarlyAllocation"/>
« no previous file with comments | « content/browser/loader/async_resource_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698