Skip to content

Commit a4562dc

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 39c97ce of spec repo
1 parent 5d69285 commit a4562dc

2 files changed

Lines changed: 78 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72071,10 +72071,16 @@ components:
7207172071
packets_sent_by_server: 20
7207272072
rtt_micro_seconds: 800
7207372073
tcp_closed_connections: 30
72074+
tcp_delivered_ce: 12
7207472075
tcp_established_connections: 40
72076+
tcp_probe0_count: 2
72077+
tcp_rcv_ooo_pack: 15
72078+
tcp_recovery_count: 8
7207572079
tcp_refusals: 7
72080+
tcp_reord_seen: 4
7207672081
tcp_resets: 5
7207772082
tcp_retransmits: 30
72083+
tcp_rto_count: 3
7207872084
tcp_timeouts: 6
7207972085
id: client_team:networks, server_service:hucklebuck
7208072086
type: aggregated_connection
@@ -72132,14 +72138,34 @@ components:
7213272138
description: The number of TCP connections in a closed state. Measured in connections per second from the client.
7213372139
format: int64
7213472140
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
7213572145
tcp_established_connections:
7213672146
description: The number of TCP connections in an established state. Measured in connections per second from the client.
7213772147
format: int64
7213872148
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
7213972161
tcp_refusals:
7214072162
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.
7214172163
format: int64
7214272164
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
7214372169
tcp_resets:
7214472170
description: The number of TCP connections that were reset by the server.
7214572171
format: int64
@@ -72148,6 +72174,10 @@ components:
7214872174
description: TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
7214972175
format: int64
7215072176
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
7215172181
tcp_timeouts:
7215272182
description: The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
7215372183
format: int64

src/datadog_api_client/v2/model/single_aggregated_connection_response_data_attributes.py

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,16 @@ def openapi_types(_):
2424
"packets_sent_by_server": (int,),
2525
"rtt_micro_seconds": (int,),
2626
"tcp_closed_connections": (int,),
27+
"tcp_delivered_ce": (int,),
2728
"tcp_established_connections": (int,),
29+
"tcp_probe0_count": (int,),
30+
"tcp_rcv_ooo_pack": (int,),
31+
"tcp_recovery_count": (int,),
2832
"tcp_refusals": (int,),
33+
"tcp_reord_seen": (int,),
2934
"tcp_resets": (int,),
3035
"tcp_retransmits": (int,),
36+
"tcp_rto_count": (int,),
3137
"tcp_timeouts": (int,),
3238
}
3339

@@ -39,10 +45,16 @@ def openapi_types(_):
3945
"packets_sent_by_server": "packets_sent_by_server",
4046
"rtt_micro_seconds": "rtt_micro_seconds",
4147
"tcp_closed_connections": "tcp_closed_connections",
48+
"tcp_delivered_ce": "tcp_delivered_ce",
4249
"tcp_established_connections": "tcp_established_connections",
50+
"tcp_probe0_count": "tcp_probe0_count",
51+
"tcp_rcv_ooo_pack": "tcp_rcv_ooo_pack",
52+
"tcp_recovery_count": "tcp_recovery_count",
4353
"tcp_refusals": "tcp_refusals",
54+
"tcp_reord_seen": "tcp_reord_seen",
4455
"tcp_resets": "tcp_resets",
4556
"tcp_retransmits": "tcp_retransmits",
57+
"tcp_rto_count": "tcp_rto_count",
4658
"tcp_timeouts": "tcp_timeouts",
4759
}
4860

@@ -55,10 +67,16 @@ def __init__(
5567
packets_sent_by_server: Union[int, UnsetType] = unset,
5668
rtt_micro_seconds: Union[int, UnsetType] = unset,
5769
tcp_closed_connections: Union[int, UnsetType] = unset,
70+
tcp_delivered_ce: Union[int, UnsetType] = unset,
5871
tcp_established_connections: Union[int, UnsetType] = unset,
72+
tcp_probe0_count: Union[int, UnsetType] = unset,
73+
tcp_rcv_ooo_pack: Union[int, UnsetType] = unset,
74+
tcp_recovery_count: Union[int, UnsetType] = unset,
5975
tcp_refusals: Union[int, UnsetType] = unset,
76+
tcp_reord_seen: Union[int, UnsetType] = unset,
6077
tcp_resets: Union[int, UnsetType] = unset,
6178
tcp_retransmits: Union[int, UnsetType] = unset,
79+
tcp_rto_count: Union[int, UnsetType] = unset,
6280
tcp_timeouts: Union[int, UnsetType] = unset,
6381
**kwargs,
6482
):
@@ -86,18 +104,36 @@ def __init__(
86104
:param tcp_closed_connections: The number of TCP connections in a closed state. Measured in connections per second from the client.
87105
:type tcp_closed_connections: int, optional
88106
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+
89110
:param tcp_established_connections: The number of TCP connections in an established state. Measured in connections per second from the client.
90111
:type tcp_established_connections: int, optional
91112
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+
92122
: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.
93123
:type tcp_refusals: int, optional
94124
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+
95128
:param tcp_resets: The number of TCP connections that were reset by the server.
96129
:type tcp_resets: int, optional
97130
98131
:param tcp_retransmits: TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
99132
:type tcp_retransmits: int, optional
100133
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+
101137
: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.
102138
:type tcp_timeouts: int, optional
103139
"""
@@ -115,14 +151,26 @@ def __init__(
115151
kwargs["rtt_micro_seconds"] = rtt_micro_seconds
116152
if tcp_closed_connections is not unset:
117153
kwargs["tcp_closed_connections"] = tcp_closed_connections
154+
if tcp_delivered_ce is not unset:
155+
kwargs["tcp_delivered_ce"] = tcp_delivered_ce
118156
if tcp_established_connections is not unset:
119157
kwargs["tcp_established_connections"] = tcp_established_connections
158+
if tcp_probe0_count is not unset:
159+
kwargs["tcp_probe0_count"] = tcp_probe0_count
160+
if tcp_rcv_ooo_pack is not unset:
161+
kwargs["tcp_rcv_ooo_pack"] = tcp_rcv_ooo_pack
162+
if tcp_recovery_count is not unset:
163+
kwargs["tcp_recovery_count"] = tcp_recovery_count
120164
if tcp_refusals is not unset:
121165
kwargs["tcp_refusals"] = tcp_refusals
166+
if tcp_reord_seen is not unset:
167+
kwargs["tcp_reord_seen"] = tcp_reord_seen
122168
if tcp_resets is not unset:
123169
kwargs["tcp_resets"] = tcp_resets
124170
if tcp_retransmits is not unset:
125171
kwargs["tcp_retransmits"] = tcp_retransmits
172+
if tcp_rto_count is not unset:
173+
kwargs["tcp_rto_count"] = tcp_rto_count
126174
if tcp_timeouts is not unset:
127175
kwargs["tcp_timeouts"] = tcp_timeouts
128176
super().__init__(kwargs)

0 commit comments

Comments
 (0)