| Index: net/quic/quic_client_session.cc
|
| diff --git a/net/quic/quic_client_session.cc b/net/quic/quic_client_session.cc
|
| index 57a5393d734e359f50ef96f0b2fe6ccf6965f1f1..4641118891a66369796c0ec401b414438b605907 100644
|
| --- a/net/quic/quic_client_session.cc
|
| +++ b/net/quic/quic_client_session.cc
|
| @@ -306,6 +306,17 @@ QuicClientSession::~QuicClientSession() {
|
| }
|
| }
|
|
|
| + // The MTU used by QUIC is limited to a fairly small set of predefined values
|
| + // (initial values and MTU discovery values), but does not fare well when
|
| + // bucketed. Because of that, a sparse histogram is used here.
|
| + UMA_HISTOGRAM_SPARSE_SLOWLY("Net.QuicSession.ClientSideMtu",
|
| + connection()->max_packet_length());
|
| + UMA_HISTOGRAM_SPARSE_SLOWLY("Net.QuicSession.ServerSideMtu",
|
| + stats.max_received_packet_size);
|
| +
|
| + UMA_HISTOGRAM_COUNTS("Net.QuicSession.MtuProbesSent",
|
| + connection()->mtu_probe_count());
|
| +
|
| if (stats.max_sequence_reordering == 0)
|
| return;
|
| const base::HistogramBase::Sample kMaxReordering = 100;
|
|
|