| 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"/>
|
|
|