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

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

Issue 2140253002: Add metrics to track HTTP/0.9 usage for main frames and subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: 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
« no previous file with comments | « net/spdy/spdy_network_transaction_unittest.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 01bdbd720786d92908c05a850a8cc6ac50ab9565..3e48c53e7868f2020f77f65b91257592858bd63f 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -28282,6 +28282,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
@@ -28289,6 +28292,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>
@@ -68974,13 +68996,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">
« no previous file with comments | « 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