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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2119623002: Add metrics to track HTTP/0.9 usage for main frames and subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Response to comments Created 4 years, 5 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 a0143fd8a45ff3a797041e74a2b52108140e0d17..3d09051979fa2094415c7a5d8eab8b028e228f31 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -28067,6 +28067,9 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Net.HttpResponseInfo.ConnectionInfo" enum="ConnectionInfo">
+ <obsolete>
+ Deprecated as of 06/2016.
+ </obsolete>
<owner>bnc@chromium.org</owner>
<summary>
Application protocol used in HTTP response. Recorded every time a
@@ -28074,6 +28077,25 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Net.HttpResponseInfo.ConnectionInfo.MainFrame"
+ enum="ConnectionInfo">
+ <owner>mmenke@chromium.org</owner>
+ <summary>
+ Application protocol used in HTTP responses to requests for main frames.
+ Only includes requests that went over the network.
+ </summary>
+</histogram>
+
+<histogram name="Net.HttpResponseInfo.ConnectionInfo.SubResource"
+ enum="ConnectionInfo">
+ <owner>mmenke@chromium.org</owner>
+ <summary>
+ Application protocol used in HTTP responses to requests for resources other
+ than main frames. Does not include internal Chrome requests. Only includes
+ requests that went over the network.
+ </summary>
+</histogram>
+
<histogram name="Net.HttpServerProperties.UpdatePrefs"
enum="HttpServerPropertiesUpdatePrefsLocation">
<owner>rtenneti@chromium.org</owner>
@@ -68535,13 +68557,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
net::HttpResponseInfo::ConnectionInfo.
</summary>
<int value="0" label="unknown"/>
- <int value="1" label="HTTP/0.9, HTTP/1.0, or HTTP/1.1"/>
+ <int value="1" label="HTTP/1.1"/>
<int value="2" label="SPDY/2 (deprecated)"/>
<int value="3" label="SPDY/3"/>
<int value="4" label="HTTP/2"/>
<int value="5" label="QUIC"/>
<int value="6" label="HTTP/2 draft-14"/>
<int value="7" label="HTTP/2 draft-15"/>
+ <int value="8" label="HTTP/0.9"/>
+ <int value="9" label="HTTP/1.0"/>
</enum>
<enum name="ConnectionResult" type="int">
« net/http/http_response_info.h ('K') | « net/spdy/spdy_network_transaction_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698