| Index: tools/metrics/histograms/histograms.xml
|
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
|
| index b6ff90c7b686a717f230b30a267a891aafb36bc5..180e2732b6c05e5bf6c38f82d44ae93ea1d84513 100644
|
| --- a/tools/metrics/histograms/histograms.xml
|
| +++ b/tools/metrics/histograms/histograms.xml
|
| @@ -22422,6 +22422,27 @@ 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>
|
| + Records 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.
|
| + </summary>
|
| +</histogram>
|
| +
|
| +<histogram name="Net.QuicStreamFactory.PublicResetsPostHandshake">
|
| + \
|
| + <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.
|
| + </summary>
|
| +</histogram>
|
| +
|
| <histogram name="Net.QuicStreamFactory.QuicIsDisabled" enum="Ports">
|
| <owner>rtenneti@chromium.org</owner>
|
| <summary>
|
| @@ -22431,6 +22452,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
|
| </summary>
|
| </histogram>
|
|
|
| +<histogram name="Net.QuicStreamFactory.TimeoutsStreamsOpen">
|
| + \
|
| + <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.
|
| + </summary>
|
| +</histogram>
|
| +
|
| <histogram name="Net.QuicVerifyProofFailed.HandshakeConfirmed"
|
| enum="BooleanHandshakeConfirmed">
|
| <owner>rtenneti@chromium.org</owner>
|
| @@ -64883,6 +64915,11 @@ 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 streams open"/>
|
| +</enum>
|
| +
|
| <enum name="QuicDiskCacheAPICall" type="int">
|
| <int value="0" label="Start"/>
|
| <int value="1" label="WaitForDataReady"/>
|
|
|