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

Unified Diff: net/base/net_log_event_type_list.h

Issue 196053008: Add varz to track QUIC packets and bytes sent by transmission type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/quic/quic_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_log_event_type_list.h
diff --git a/net/base/net_log_event_type_list.h b/net/base/net_log_event_type_list.h
index 072091f1f3279ded2402a65518bb1d1d6b4a9c9c..460728f2d21df81e3bde01e0acd6bd5591b74661 100644
--- a/net/base/net_log_event_type_list.h
+++ b/net/base/net_log_event_type_list.h
@@ -1344,12 +1344,13 @@ EVENT_TYPE(QUIC_SESSION_PACKET_RECEIVED)
// Session sent a QUIC packet.
// {
-// "encryption_level": <The EncryptionLevel of the packet>
+// "encryption_level": <The EncryptionLevel of the packet>,
+// "transmission_type": <The TransmissionType of the packet>,
// "packet_sequence_number": <The packet's full 64-bit sequence number,
// as a base-10 string.>,
// "size": <The size of the packet in bytes>
// }
-EVENT_TYPE(QUIC_SESSION_PACKET_RETRANSMITTED)
+EVENT_TYPE(QUIC_SESSION_PACKET_SENT)
// Session retransmitted a QUIC packet.
// {
@@ -1358,11 +1359,12 @@ EVENT_TYPE(QUIC_SESSION_PACKET_RETRANSMITTED)
// "new_packet_sequence_number": <The new packet's full 64-bit sequence
// number, as a base-10 string.>,
// }
-EVENT_TYPE(QUIC_SESSION_PACKET_SENT)
+EVENT_TYPE(QUIC_SESSION_PACKET_RETRANSMITTED)
// Session received a QUIC packet header for a valid packet.
// {
-// "guid": <The 64-bit GUID for this connection, as a base-10 string>,
+// "connection_id": <The 64-bit CONNECTION_ID for this connection, as a
+// base-10 string>,
// "public_flags": <The public flags set for this packet>,
// "packet_sequence_number": <The packet's full 64-bit sequence number,
// as a base-10 string.>,
@@ -1549,7 +1551,8 @@ EVENT_TYPE(QUIC_SESSION_VERSION_NEGOTIATED)
// Session revived a QUIC packet packet via FEC.
// {
-// "guid": <The 64-bit GUID for this connection, as a base-10 string>,
+// "connection_id": <The 64-bit CONNECTION_ID for this connection, as a
+// base-10 string>,
// "public_flags": <The public flags set for this packet>,
// "packet_sequence_number": <The packet's full 64-bit sequence number,
// as a base-10 string.>,
« no previous file with comments | « no previous file | net/quic/quic_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698