Bug 1642559 - Initiate a variable to fix SPDY_REQUEST_PER_CONN_2 r=necko-reviewers,valentin

Differential Revision: https://phabricator.services.mozilla.com/D80413
This commit is contained in:
Dragana Damjanovic 2020-06-23 02:53:52 +00:00
parent 7ab560a9be
commit 6621d5958e
2 changed files with 4 additions and 3 deletions

View File

@ -112,6 +112,7 @@ Http2Session::Http2Session(nsISocketTransport* aSocketTransport,
mUseH2Deps(false),
mAttemptingEarlyData(attemptingEarlyData),
mOriginFrameActivated(false),
mCntActivated(0),
mTlsHandshakeFinished(false),
mCheckNetworkStallsWithTFO(false),
mLastRequestBytesSentTime(0),
@ -186,7 +187,7 @@ Http2Session::~Http2Session() {
Telemetry::Accumulate(Telemetry::DNS_TRR_REQUEST_PER_CONN, mTrrStreams);
}
Telemetry::Accumulate(Telemetry::SPDY_PARALLEL_STREAMS, mConcurrentHighWater);
Telemetry::Accumulate(Telemetry::SPDY_REQUEST_PER_CONN_2, mCntActivated);
Telemetry::Accumulate(Telemetry::SPDY_REQUEST_PER_CONN_3, mCntActivated);
Telemetry::Accumulate(Telemetry::SPDY_SERVER_INITIATED_STREAMS,
mServerPushedResources);
Telemetry::Accumulate(Telemetry::SPDY_GOAWAY_LOCAL, mClientGoAwayReason);

View File

@ -2778,7 +2778,7 @@
"n_buckets": 50,
"description": "SPDY: Streams concurrent active per connection"
},
"SPDY_REQUEST_PER_CONN_2": {
"SPDY_REQUEST_PER_CONN_3": {
"record_in_processes": ["main", "content"],
"products": ["firefox", "fennec"],
"alert_emails": ["necko@mozilla.com", "ddamjanovic@mozilla.com"],
@ -2786,7 +2786,7 @@
"kind": "exponential",
"high": 1000,
"n_buckets": 50,
"bug_numbers": [1505500],
"bug_numbers": [1505500,1642559],
"description": "SPDY: Streams created per connection"
},
"SPDY_SERVER_INITIATED_STREAMS": {