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

Unified Diff: net/quic/quic_connection_logger.cc

Issue 937803002: Add a new histogram Net.QuicSession.HeadersStreamEarlyFramesReceived (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_connection_logger.cc
diff --git a/net/quic/quic_connection_logger.cc b/net/quic/quic_connection_logger.cc
index 8a9c3a711181be7109d1f7232168fd43a2cf0713..2c242636d99e1170ba33220763214b373084f63f 100644
--- a/net/quic/quic_connection_logger.cc
+++ b/net/quic/quic_connection_logger.cc
@@ -369,6 +369,8 @@ QuicConnectionLogger::~QuicConnectionLogger() {
num_blocked_frames_received_);
UMA_HISTOGRAM_COUNTS("Net.QuicSession.BlockedFrames.Sent",
num_blocked_frames_sent_);
+ UMA_HISTOGRAM_COUNTS("Net.QuicSession.HeadersStreamEarlyFramesReceived",
Alexei Svitkine (slow) 2015/02/18 19:53:55 Optional nit: Maybe more readable if you add anoth
Ryan Hamilton 2015/02/18 19:57:35 Done. Albeit as: Net.QuicSession.HeadersStream.Ear
+ session_->headers_stream()->num_early_frames_received());
if (num_frames_received_ > 0) {
int duplicate_stream_frame_per_thousand =
« no previous file with comments | « no previous file | net/quic/quic_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698