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.
72133
72139
format: int64
72134
72140
type: integer
72141
+
tcp_delivered_ce:
72142
+
description: The number of TCP segments acknowledged with the ECN Congestion Experienced (CE) mark, indicating that an upstream router marked packets as experiencing congestion.
72143
+
format: int64
72144
+
type: integer
72135
72145
tcp_established_connections:
72136
72146
description: The number of TCP connections in an established state. Measured in connections per second from the client.
72137
72147
format: int64
72138
72148
type: integer
72149
+
tcp_probe0_count:
72150
+
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.
72151
+
format: int64
72152
+
type: integer
72153
+
tcp_rcv_ooo_pack:
72154
+
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.
72155
+
format: int64
72156
+
type: integer
72157
+
tcp_recovery_count:
72158
+
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.
72159
+
format: int64
72160
+
type: integer
72139
72161
tcp_refusals:
72140
72162
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.
72141
72163
format: int64
72142
72164
type: integer
72165
+
tcp_reord_seen:
72166
+
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.
72167
+
format: int64
72168
+
type: integer
72143
72169
tcp_resets:
72144
72170
description: The number of TCP connections that were reset by the server.
72145
72171
format: int64
@@ -72148,6 +72174,10 @@ components:
72148
72174
description: TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
72149
72175
format: int64
72150
72176
type: integer
72177
+
tcp_rto_count:
72178
+
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.
72179
+
format: int64
72180
+
type: integer
72151
72181
tcp_timeouts:
72152
72182
description: The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
:param tcp_closed_connections: The number of TCP connections in a closed state. Measured in connections per second from the client.
87
105
:type tcp_closed_connections: int, optional
88
106
107
+
:param tcp_delivered_ce: The number of TCP segments acknowledged with the ECN Congestion Experienced (CE) mark, indicating that an upstream router marked packets as experiencing congestion.
108
+
:type tcp_delivered_ce: int, optional
109
+
89
110
:param tcp_established_connections: The number of TCP connections in an established state. Measured in connections per second from the client.
90
111
:type tcp_established_connections: int, optional
91
112
113
+
:param tcp_probe0_count: 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.
114
+
:type tcp_probe0_count: int, optional
115
+
116
+
:param tcp_rcv_ooo_pack: 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.
117
+
:type tcp_rcv_ooo_pack: int, optional
118
+
119
+
:param tcp_recovery_count: 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.
120
+
:type tcp_recovery_count: int, optional
121
+
92
122
:param tcp_refusals: 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.
93
123
:type tcp_refusals: int, optional
94
124
125
+
:param tcp_reord_seen: 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.
126
+
:type tcp_reord_seen: int, optional
127
+
95
128
:param tcp_resets: The number of TCP connections that were reset by the server.
96
129
:type tcp_resets: int, optional
97
130
98
131
:param tcp_retransmits: TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
99
132
:type tcp_retransmits: int, optional
100
133
134
+
:param tcp_rto_count: 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.
135
+
:type tcp_rto_count: int, optional
136
+
101
137
:param tcp_timeouts: The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
0 commit comments