diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-02 20:26:26 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-02 20:26:26 +0000 |
commit | 160f5e272a5289a3a50eca61132224d087167cf1 (patch) | |
tree | 931af5c086c09fa4cf9fce16c9566417cefd19b3 /tools/metrics | |
parent | 56fa29593af8afdbd286100f8e7e36acc96de8a8 (diff) | |
download | chromium_src-160f5e272a5289a3a50eca61132224d087167cf1.zip chromium_src-160f5e272a5289a3a50eca61132224d087167cf1.tar.gz chromium_src-160f5e272a5289a3a50eca61132224d087167cf1.tar.bz2 |
Add several new QUIC histograms.
Net.QuicSession.OutOfOrderPacketsReceived - The number of times
the current received packet had a lower sequence number than the
previously received packet sequence number.
Net.QuicSession.PacketGapReceived - The number of missing packets between
the current received packet and the previously largest received packet
sequence number.
Net.QuicSession.PacketGapSent - The number of missing packets between
the current received packet and the previously largest received packet
sequence number, as reported by the remote end of the connection.
BUG=
Review URL: https://chromiumcodereview.appspot.com/18325013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209766 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/metrics')
-rw-r--r-- | tools/metrics/histograms/histograms.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml index bdbea2c..e4e60e6 100644 --- a/tools/metrics/histograms/histograms.xml +++ b/tools/metrics/histograms/histograms.xml @@ -5742,6 +5742,28 @@ other types of suffix sets. </summary> </histogram> +<histogram name="Net.QuicSession.OutOfOrderPacketsReceived"> + <summary> + The number of times packets the current received packet had a lower sequence + number than the previously received packet sequence number. + </summary> +</histogram> + +<histogram name="Net.QuicSession.PacketGapReceived"> + <summary> + The number of missing packets between the current received packet and the + previously largest received packet sequence number. + </summary> +</histogram> + +<histogram name="Net.QuicSession.PacketGapSent"> + <summary> + The number of missing packets between the current received packet and the + previously largest received packet sequence number, as reported by the + remote end of the connection. + </summary> +</histogram> + <histogram name="Net.RenegotiationExtensionSupported"> <summary> True if the HTTP request was sent to a server which supports the TLS |