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
Copy file name to clipboardExpand all lines: .generator/schemas/v2/openapi.yaml
+27-4Lines changed: 27 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -97591,19 +97591,19 @@ components:
97591
97591
format: int64
97592
97592
type: integer
97593
97593
tcp_rcv_ooo_pack:
97594
-
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.
97594
+
description: The number of TCP packets received out of order. This indicates network-level packet reordering, which can degrade TCP performance by triggering spurious packet retries and reducing throughput.
97595
97595
format: int64
97596
97596
type: integer
97597
97597
tcp_recovery_count:
97598
-
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.
97598
+
description: The number of TCP fast recovery events. Fast recovery retransmits lost segments detected through duplicate ACKs or selective acknowledgment (SACK) before a timeout occurs.
97599
97599
format: int64
97600
97600
type: integer
97601
97601
tcp_refusals:
97602
97602
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.
97603
97603
format: int64
97604
97604
type: integer
97605
97605
tcp_reord_seen:
97606
-
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.
97606
+
description: The number of times reordering of sent packets was detected. Reordering detection adjusts the duplicate ACK threshold, preventing spurious packet retries caused by out-of-order delivery.
97607
97607
format: int64
97608
97608
type: integer
97609
97609
tcp_resets:
@@ -97615,7 +97615,7 @@ components:
97615
97615
format: int64
97616
97616
type: integer
97617
97617
tcp_rto_count:
97618
-
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.
97618
+
description: The number of TCP retry timeouts (RTOs). An RTO occurs when an ACK is not received within the estimated round-trip time, forcing the sender to resend the segment and halve its congestion window.
97619
97619
format: int64
97620
97620
type: integer
97621
97621
tcp_timeouts:
@@ -114577,6 +114577,7 @@ components:
114577
114577
monitors_downtime: Set downtimes to suppress alerts from any monitor in an organization. Mute and unmute monitors. The ability to write monitors is not required to set downtimes.
114578
114578
monitors_read: View monitors.
114579
114579
monitors_write: Edit, delete, and resolve individual monitors.
org_connections_write: Create, edit, and delete cross organization connections.
114582
114583
org_management: Edit org configurations, including authentication and certain security preferences such as configuring SAML, renaming an org, configuring allowed login methods, creating child orgs, subscribing & unsubscribing from apps in the marketplace, and enabling & disabling Remote Configuration for the entire organization.
description: Retrieve the list of public OAuth2 sites available for the current environment. This endpoint is used for OAuth2 discovery and returns sites where users can authenticate.
Copy file name to clipboardExpand all lines: lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -51,16 +51,16 @@ class SingleAggregatedConnectionResponseDataAttributes
51
51
# 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.
52
52
attr_accessor:tcp_probe0_count
53
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.
54
+
# The number of TCP packets received out of order. This indicates network-level packet reordering, which can degrade TCP performance by triggering spurious packet retries and reducing throughput.
55
55
attr_accessor:tcp_rcv_ooo_pack
56
56
57
-
# 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.
57
+
# The number of TCP fast recovery events. Fast recovery retransmits lost segments detected through duplicate ACKs or selective acknowledgment (SACK) before a timeout occurs.
58
58
attr_accessor:tcp_recovery_count
59
59
60
60
# 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.
61
61
attr_accessor:tcp_refusals
62
62
63
-
# 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.
63
+
# The number of times reordering of sent packets was detected. Reordering detection adjusts the duplicate ACK threshold, preventing spurious packet retries caused by out-of-order delivery.
64
64
attr_accessor:tcp_reord_seen
65
65
66
66
# The number of TCP connections that were reset by the server.
@@ -69,7 +69,7 @@ class SingleAggregatedConnectionResponseDataAttributes
69
69
# TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
70
70
attr_accessor:tcp_retransmits
71
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.
72
+
# The number of TCP retry timeouts (RTOs). An RTO occurs when an ACK is not received within the estimated round-trip time, forcing the sender to resend the segment and halve its congestion window.
73
73
attr_accessor:tcp_rto_count
74
74
75
75
# 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