Skip to content

Commit 9eb577a

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit fbd1f9c of spec repo
1 parent 541ee36 commit 9eb577a

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

services/cloud_network_monitoring/src/v2/models/SingleAggregatedConnectionResponseDataAttributes.ts

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,34 @@ export class SingleAggregatedConnectionResponseDataAttributes {
3232
* The number of TCP connections in a closed state. Measured in connections per second from the client.
3333
*/
3434
"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;
3539
/**
3640
* The number of TCP connections in an established state. Measured in connections per second from the client.
3741
*/
3842
"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;
3955
/**
4056
* 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.
4157
*/
4258
"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;
4363
/**
4464
* The number of TCP connections that were reset by the server.
4565
*/
@@ -48,6 +68,10 @@ export class SingleAggregatedConnectionResponseDataAttributes {
4868
* TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
4969
*/
5070
"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;
5175
/**
5276
* The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
5377
*/
@@ -101,16 +125,41 @@ export class SingleAggregatedConnectionResponseDataAttributes {
101125
type: "number",
102126
format: "int64",
103127
},
128+
tcpDeliveredCe: {
129+
baseName: "tcp_delivered_ce",
130+
type: "number",
131+
format: "int64",
132+
},
104133
tcpEstablishedConnections: {
105134
baseName: "tcp_established_connections",
106135
type: "number",
107136
format: "int64",
108137
},
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+
},
109153
tcpRefusals: {
110154
baseName: "tcp_refusals",
111155
type: "number",
112156
format: "int64",
113157
},
158+
tcpReordSeen: {
159+
baseName: "tcp_reord_seen",
160+
type: "number",
161+
format: "int64",
162+
},
114163
tcpResets: {
115164
baseName: "tcp_resets",
116165
type: "number",
@@ -121,6 +170,11 @@ export class SingleAggregatedConnectionResponseDataAttributes {
121170
type: "number",
122171
format: "int64",
123172
},
173+
tcpRtoCount: {
174+
baseName: "tcp_rto_count",
175+
type: "number",
176+
format: "int64",
177+
},
124178
tcpTimeouts: {
125179
baseName: "tcp_timeouts",
126180
type: "number",

0 commit comments

Comments
 (0)