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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 15950009: Add histograms for tracking the number of client hellos send. This will let us understand how frequ… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use helper function Created 7 years, 7 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 | « net/quic/quic_client_session.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index fdb429b3ad5bbc019babb89278af80c79c6cbfb5..2c93f47ed56d2fd23d09fb7b59bddaabbeec044d 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3665,6 +3665,24 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="Net.QuicCryptoHandshakeState" enum="QuicHandshakeState">
+ <summary>
+ The state of a QUIC connection's crypto hanshake as it progresses from
+ starting to confirmation or failure.
+ </summary>
+</histogram>
+
+<histogram name="Net.QuicNumSentClientHellos">
+ <summary>The number of client hello messages sent.</summary>
+</histogram>
+
+<histogram name="Net.QuicNumSentClientHellosCryptoHandshakeConfirmed">
+ <summary>
+ The number of client hello messages sent when the crypto handshake was
+ confirmed.
+ </summary>
+</histogram>
+
<histogram name="Net.RenegotiationExtensionSupported">
<summary>
True if the HTTP request was sent to a server which supports the TLS
@@ -13434,6 +13452,13 @@ other types of suffix sets.
<int value="22" label="DOMAIN_NUM_EVENTS"/>
</enum>
+<enum name="QuicHandshakeState" type="int">
+ <int value="0" label="STARTED"/>
+ <int value="1" label="ENCRYPTION_ESTABLISHED"/>
+ <int value="2" label="HANDSHAKE_CONFIRMED"/>
+ <int value="3" label="FAILED"/>
+</enum>
+
<enum name="ResolutionCategory" type="int">
<int value="0" label="RESOLVE_SUCCESS"/>
<int value="1" label="RESOLVE_FAIL"/>
« no previous file with comments | « net/quic/quic_client_session.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698