diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-12-07 01:20:22 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-12-07 01:20:22 +0000 |
commit | a9e95777cf1dc1f6323f3c3003b9deb00649dec3 (patch) | |
tree | 3cefdfc424d853956c4ee8ccd0ce4d8d81b03b8d /pkg/tcpip/tcpip.go | |
parent | 5648c029a4358d4c2803fba978a3d86cae894766 (diff) | |
parent | b1d44be7ad893bd6bdfd164a54a7142f4462414b (diff) |
Merge release-20191129.0-19-gb1d44be (automated)
Diffstat (limited to 'pkg/tcpip/tcpip.go')
-rw-r--r-- | pkg/tcpip/tcpip.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/tcpip/tcpip.go b/pkg/tcpip/tcpip.go index 5746043cc..d5bb5b6ed 100644 --- a/pkg/tcpip/tcpip.go +++ b/pkg/tcpip/tcpip.go @@ -924,6 +924,14 @@ type TCPStats struct { // ESTABLISHED state or the CLOSE-WAIT state. EstablishedResets *StatCounter + // EstablishedClosed is the number of times established TCP connections + // made a transition to CLOSED state. + EstablishedClosed *StatCounter + + // EstablishedTimedout is the number of times an established connection + // was reset because of keep-alive time out. + EstablishedTimedout *StatCounter + // ListenOverflowSynDrop is the number of times the listen queue overflowed // and a SYN was dropped. ListenOverflowSynDrop *StatCounter |