Skip to content

Commit

Permalink
quic: add missing memory tracker fields
Browse files Browse the repository at this point in the history
PR-URL: #34160
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
jasnell committed Jul 5, 2020
1 parent 5a87e9b commit 1b1e985
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/quic/node_quic_session.cc
Expand Up @@ -2548,6 +2548,8 @@ void QuicSession::MemoryInfo(MemoryTracker* tracker) const {
tracker->TrackFieldWithSize("current_ngtcp2_memory", current_ngtcp2_memory_);
tracker->TrackField("conn_closebuf", conn_closebuf_);
tracker->TrackField("application", application_);
tracker->TrackField("quic_state", quic_state_);
tracker->TrackField("qlog_stream", qlog_stream_);
StatsBase::StatsMemoryInfo(tracker);
}

Expand Down

0 comments on commit 1b1e985

Please sign in to comment.