You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: The number of TCP connections in a closed state. Measured in connections per second from the client.
76500
76506
format: int64
76501
76507
type: integer
76508
+
tcp_delivered_ce:
76509
+
description: The number of TCP segments acknowledged with the ECN Congestion Experienced (CE) mark, indicating that an upstream router marked packets as experiencing congestion.
76510
+
format: int64
76511
+
type: integer
76502
76512
tcp_established_connections:
76503
76513
description: The number of TCP connections in an established state. Measured in connections per second from the client.
76504
76514
format: int64
76505
76515
type: integer
76516
+
tcp_probe0_count:
76517
+
description: The number of TCP zero-window probes sent. These probes are sent when the receiver advertises a zero receive window, indicating it cannot accept more data.
76518
+
format: int64
76519
+
type: integer
76520
+
tcp_rcv_ooo_pack:
76521
+
description: The number of TCP packets received out of order. This indicates network-level packet reordering, which can degrade TCP performance by triggering spurious retransmissions and reducing throughput.
76522
+
format: int64
76523
+
type: integer
76524
+
tcp_recovery_count:
76525
+
description: The number of TCP fast recovery events. Fast recovery retransmits lost segments detected through duplicate ACKs or selective acknowledgment (SACK) without waiting for a retransmission timeout.
76526
+
format: int64
76527
+
type: integer
76506
76528
tcp_refusals:
76507
76529
description: The number of TCP connections that were refused by the server. Typically this indicates an attempt to connect to an IP/port that is not receiving connections, or a firewall/security misconfiguration.
76508
76530
format: int64
76509
76531
type: integer
76532
+
tcp_reord_seen:
76533
+
description: The number of times reordering of sent packets was detected. Reordering detection adjusts the duplicate ACK threshold, preventing spurious retransmissions caused by out-of-order delivery.
76534
+
format: int64
76535
+
type: integer
76510
76536
tcp_resets:
76511
76537
description: The number of TCP connections that were reset by the server.
76512
76538
format: int64
@@ -76515,6 +76541,10 @@ components:
76515
76541
description: TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
76516
76542
format: int64
76517
76543
type: integer
76544
+
tcp_rto_count:
76545
+
description: The number of TCP retransmission timeouts (RTOs). An RTO occurs when an ACK is not received within the estimated round-trip time, forcing the sender to retransmit and halve its congestion window.
76546
+
format: int64
76547
+
type: integer
76518
76548
tcp_timeouts:
76519
76549
description: The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
Copy file name to clipboardExpand all lines: services/cloud_network_monitoring/src/v2/models/SingleAggregatedConnectionResponseDataAttributes.ts
+54Lines changed: 54 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -32,14 +32,34 @@ export class SingleAggregatedConnectionResponseDataAttributes {
32
32
* The number of TCP connections in a closed state. Measured in connections per second from the client.
33
33
*/
34
34
"tcpClosedConnections"?: number;
35
+
/**
36
+
* The number of TCP segments acknowledged with the ECN Congestion Experienced (CE) mark, indicating that an upstream router marked packets as experiencing congestion.
37
+
*/
38
+
"tcpDeliveredCe"?: number;
35
39
/**
36
40
* The number of TCP connections in an established state. Measured in connections per second from the client.
37
41
*/
38
42
"tcpEstablishedConnections"?: number;
43
+
/**
44
+
* The number of TCP zero-window probes sent. These probes are sent when the receiver advertises a zero receive window, indicating it cannot accept more data.
45
+
*/
46
+
"tcpProbe0Count"?: number;
47
+
/**
48
+
* The number of TCP packets received out of order. This indicates network-level packet reordering, which can degrade TCP performance by triggering spurious retransmissions and reducing throughput.
49
+
*/
50
+
"tcpRcvOooPack"?: number;
51
+
/**
52
+
* The number of TCP fast recovery events. Fast recovery retransmits lost segments detected through duplicate ACKs or selective acknowledgment (SACK) without waiting for a retransmission timeout.
53
+
*/
54
+
"tcpRecoveryCount"?: number;
39
55
/**
40
56
* The number of TCP connections that were refused by the server. Typically this indicates an attempt to connect to an IP/port that is not receiving connections, or a firewall/security misconfiguration.
41
57
*/
42
58
"tcpRefusals"?: number;
59
+
/**
60
+
* The number of times reordering of sent packets was detected. Reordering detection adjusts the duplicate ACK threshold, preventing spurious retransmissions caused by out-of-order delivery.
61
+
*/
62
+
"tcpReordSeen"?: number;
43
63
/**
44
64
* The number of TCP connections that were reset by the server.
45
65
*/
@@ -48,6 +68,10 @@ export class SingleAggregatedConnectionResponseDataAttributes {
48
68
* TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
49
69
*/
50
70
"tcpRetransmits"?: number;
71
+
/**
72
+
* The number of TCP retransmission timeouts (RTOs). An RTO occurs when an ACK is not received within the estimated round-trip time, forcing the sender to retransmit and halve its congestion window.
73
+
*/
74
+
"tcpRtoCount"?: number;
51
75
/**
52
76
* The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
53
77
*/
@@ -101,16 +125,41 @@ export class SingleAggregatedConnectionResponseDataAttributes {
101
125
type: "number",
102
126
format: "int64",
103
127
},
128
+
tcpDeliveredCe: {
129
+
baseName: "tcp_delivered_ce",
130
+
type: "number",
131
+
format: "int64",
132
+
},
104
133
tcpEstablishedConnections: {
105
134
baseName: "tcp_established_connections",
106
135
type: "number",
107
136
format: "int64",
108
137
},
138
+
tcpProbe0Count: {
139
+
baseName: "tcp_probe0_count",
140
+
type: "number",
141
+
format: "int64",
142
+
},
143
+
tcpRcvOooPack: {
144
+
baseName: "tcp_rcv_ooo_pack",
145
+
type: "number",
146
+
format: "int64",
147
+
},
148
+
tcpRecoveryCount: {
149
+
baseName: "tcp_recovery_count",
150
+
type: "number",
151
+
format: "int64",
152
+
},
109
153
tcpRefusals: {
110
154
baseName: "tcp_refusals",
111
155
type: "number",
112
156
format: "int64",
113
157
},
158
+
tcpReordSeen: {
159
+
baseName: "tcp_reord_seen",
160
+
type: "number",
161
+
format: "int64",
162
+
},
114
163
tcpResets: {
115
164
baseName: "tcp_resets",
116
165
type: "number",
@@ -121,6 +170,11 @@ export class SingleAggregatedConnectionResponseDataAttributes {
0 commit comments