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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1208933004: QUIC - disable QUIC under recent pathological connection errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revised after fourth round of review feedback. Created 5 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/quic/quic_utils.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 a96e994d642d164532ea795b2440dc2a7e53abec..3d78a2cac8ceef79702d3de03a377a20df39f955 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -22607,6 +22607,28 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Net.QuicStreamFactory.DisabledReasons"
+ enum="QuicDisabledReason">
+ <owner>ckrasic@chromium.org</owner>
+ <summary>
+ Rrecords reasons QUIC is disabled (for all ports), if sufficent recent
+ connections experience: public reset post crypto handshake, or timeouts with
+ streams open. QUIC is disabled until the next reboot of Chrome. Logged
+ during session close.
+ </summary>
+</histogram>
+
+<histogram name="Net.QuicStreamFactory.PublicResetsPostHandshake"
+ units="resets">
+ <owner>ckrasic@chromium.org</owner>
+ <summary>
+ Captures the maximum number of public resets post handshake that occurred
+ within a window of recent connections (default 20). Will help inform the
+ choice of threshold to disable QUIC for clients that experience pathalogical
+ errors. Logged during session close.
+ </summary>
+</histogram>
+
<histogram name="Net.QuicStreamFactory.QuicIsDisabled" enum="Ports">
<owner>rtenneti@chromium.org</owner>
<summary>
@@ -22616,6 +22638,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Net.QuicStreamFactory.TimeoutsWithOpenStreams"
+ units="timeouts">
+ <owner>ckrasic@chromium.org</owner>
+ <summary>
+ Captures the maximum number of connection timeouts with streams open that
+ occurred within a window of recent connections (default 20). Will help
+ inform the choice of threshold to disable QUIC for clients that experience
+ pathalogical errors. Logged during session close.
+ </summary>
+</histogram>
+
<histogram name="Net.QuicVerifyProofFailed.HandshakeConfirmed"
enum="BooleanHandshakeConfirmed">
<owner>rtenneti@chromium.org</owner>
@@ -65291,6 +65324,12 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="5" label="FIVE_PACKETS_LOST"/>
</enum>
+<enum name="QuicDisabledReason" type="int">
+ <int value="1" label="Public reset post handshake"/>
+ <int value="2" label="Timeout with open streams"/>
+ <int value="3" label="Bad packet loss rate"/>
+</enum>
+
<enum name="QuicDiskCacheAPICall" type="int">
<int value="0" label="Start"/>
<int value="1" label="WaitForDataReady"/>
« no previous file with comments | « net/quic/quic_utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698