Skip to content

Commit c6f07f9

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit fbd1f9c of spec repo
1 parent 889eabc commit c6f07f9

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
@@ -76438,10 +76438,16 @@ components:
7643876438
packets_sent_by_server: 20
7643976439
rtt_micro_seconds: 800
7644076440
tcp_closed_connections: 30
76441+
tcp_delivered_ce: 12
7644176442
tcp_established_connections: 40
76443+
tcp_probe0_count: 2
76444+
tcp_rcv_ooo_pack: 15
76445+
tcp_recovery_count: 8
7644276446
tcp_refusals: 7
76447+
tcp_reord_seen: 4
7644376448
tcp_resets: 5
7644476449
tcp_retransmits: 30
76450+
tcp_rto_count: 3
7644576451
tcp_timeouts: 6
7644676452
id: client_team:networks, server_service:hucklebuck
7644776453
type: aggregated_connection
@@ -76499,14 +76505,34 @@ components:
7649976505
description: The number of TCP connections in a closed state. Measured in connections per second from the client.
7650076506
format: int64
7650176507
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
7650276512
tcp_established_connections:
7650376513
description: The number of TCP connections in an established state. Measured in connections per second from the client.
7650476514
format: int64
7650576515
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
7650676528
tcp_refusals:
7650776529
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.
7650876530
format: int64
7650976531
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
7651076536
tcp_resets:
7651176537
description: The number of TCP connections that were reset by the server.
7651276538
format: int64
@@ -76515,6 +76541,10 @@ components:
7651576541
description: TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
7651676542
format: int64
7651776543
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
7651876548
tcp_timeouts:
7651976549
description: The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
7652076550
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)