Skip to content

Commit 5f89804

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit fbd1f9c of spec repo
1 parent d54c058 commit 5f89804

2 files changed

Lines changed: 84 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

packages/datadog-api-client-v2/models/SingleAggregatedConnectionResponseDataAttributes.ts

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,34 @@ export class SingleAggregatedConnectionResponseDataAttributes {
3838
* The number of TCP connections in a closed state. Measured in connections per second from the client.
3939
*/
4040
"tcpClosedConnections"?: number;
41+
/**
42+
* The number of TCP segments acknowledged with the ECN Congestion Experienced (CE) mark, indicating that an upstream router marked packets as experiencing congestion.
43+
*/
44+
"tcpDeliveredCe"?: number;
4145
/**
4246
* The number of TCP connections in an established state. Measured in connections per second from the client.
4347
*/
4448
"tcpEstablishedConnections"?: number;
49+
/**
50+
* 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.
51+
*/
52+
"tcpProbe0Count"?: number;
53+
/**
54+
* 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.
55+
*/
56+
"tcpRcvOooPack"?: number;
57+
/**
58+
* 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.
59+
*/
60+
"tcpRecoveryCount"?: number;
4561
/**
4662
* 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.
4763
*/
4864
"tcpRefusals"?: number;
65+
/**
66+
* 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.
67+
*/
68+
"tcpReordSeen"?: number;
4969
/**
5070
* The number of TCP connections that were reset by the server.
5171
*/
@@ -54,6 +74,10 @@ export class SingleAggregatedConnectionResponseDataAttributes {
5474
* TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
5575
*/
5676
"tcpRetransmits"?: number;
77+
/**
78+
* 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.
79+
*/
80+
"tcpRtoCount"?: number;
5781
/**
5882
* The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
5983
*/
@@ -109,16 +133,41 @@ export class SingleAggregatedConnectionResponseDataAttributes {
109133
type: "number",
110134
format: "int64",
111135
},
136+
tcpDeliveredCe: {
137+
baseName: "tcp_delivered_ce",
138+
type: "number",
139+
format: "int64",
140+
},
112141
tcpEstablishedConnections: {
113142
baseName: "tcp_established_connections",
114143
type: "number",
115144
format: "int64",
116145
},
146+
tcpProbe0Count: {
147+
baseName: "tcp_probe0_count",
148+
type: "number",
149+
format: "int64",
150+
},
151+
tcpRcvOooPack: {
152+
baseName: "tcp_rcv_ooo_pack",
153+
type: "number",
154+
format: "int64",
155+
},
156+
tcpRecoveryCount: {
157+
baseName: "tcp_recovery_count",
158+
type: "number",
159+
format: "int64",
160+
},
117161
tcpRefusals: {
118162
baseName: "tcp_refusals",
119163
type: "number",
120164
format: "int64",
121165
},
166+
tcpReordSeen: {
167+
baseName: "tcp_reord_seen",
168+
type: "number",
169+
format: "int64",
170+
},
122171
tcpResets: {
123172
baseName: "tcp_resets",
124173
type: "number",
@@ -129,6 +178,11 @@ export class SingleAggregatedConnectionResponseDataAttributes {
129178
type: "number",
130179
format: "int64",
131180
},
181+
tcpRtoCount: {
182+
baseName: "tcp_rto_count",
183+
type: "number",
184+
format: "int64",
185+
},
132186
tcpTimeouts: {
133187
baseName: "tcp_timeouts",
134188
type: "number",

0 commit comments

Comments
 (0)