- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
The Cloud Network Monitoring API allows you to fetch aggregated connections and their attributes. See the Cloud Network Monitoring page for more information.
Note: This endpoint is in Preview. If you have any feedback, contact Datadog support.
GET https://api.ap1.datadoghq.com/api/v2/network/connections/aggregatehttps://api.datadoghq.eu/api/v2/network/connections/aggregatehttps://api.ddog-gov.com/api/v2/network/connections/aggregatehttps://api.datadoghq.com/api/v2/network/connections/aggregatehttps://api.us3.datadoghq.com/api/v2/network/connections/aggregatehttps://api.us5.datadoghq.com/api/v2/network/connections/aggregate
Get all aggregated connections.
이름
유형
설명
from
integer
Unix timestamp (number of seconds since epoch) of the start of the query window. If not provided, the start of the query window is 15 minutes before the to
timestamp. If neither from
nor to
are provided, the query window is [now - 15m, now]
.
to
integer
Unix timestamp (number of seconds since epoch) of the end of the query window. If not provided, the end of the query window is the current time. If neither from
nor to
are provided, the query window is [now - 15m, now]
.
group_by
string
Comma-separated list of fields to group connections by.
tags
string
Comma-separated list of tags to filter connections by.
limit
integer
The number of connections to be returned. The maximum value is 5000.
OK
List of aggregated connections.
항목
유형
설명
data
[object]
Array of aggregated connection objects.
attributes
object
Attributes for an aggregated connection.
bytes_sent_by_client
int64
The total number of bytes sent by the client over the given period.
bytes_sent_by_server
int64
The total number of bytes sent by the server over the given period.
group_bys
object
The key, value pairs for each group by.
<any-key>
[string]
The values for each group by.
packets_sent_by_client
int64
The total number of packets sent by the client over the given period.
packets_sent_by_server
int64
The total number of packets sent by the server over the given period.
rtt_micro_seconds
int64
Measured as TCP smoothed round trip time in microseconds (the time between a TCP frame being sent and acknowledged).
tcp_closed_connections
int64
The number of TCP connections in a closed state. Measured in connections per second from the client.
tcp_established_connections
int64
The number of TCP connections in an established state. Measured in connections per second from the client.
tcp_refusals
int64
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.
tcp_resets
int64
The number of TCP connections that were reset by the server.
tcp_retransmits
int64
TCP Retransmits represent detected failures that are retransmitted to ensure delivery. Measured in count of retransmits from the client.
tcp_timeouts
int64
The number of TCP connections that timed out from the perspective of the operating system. This can indicate general connectivity and latency issues.
id
string
A unique identifier for the aggregated connection based on the group by values.
type
enum
Aggregated connection resource type.
Allowed enum values: aggregated_connection
default: aggregated_connection
{
"data": [
{
"attributes": {
"bytes_sent_by_client": "integer",
"bytes_sent_by_server": "integer",
"group_bys": {
"<any-key>": []
},
"packets_sent_by_client": "integer",
"packets_sent_by_server": "integer",
"rtt_micro_seconds": "integer",
"tcp_closed_connections": "integer",
"tcp_established_connections": "integer",
"tcp_refusals": "integer",
"tcp_resets": "integer",
"tcp_retransmits": "integer",
"tcp_timeouts": "integer"
},
"id": "string",
"type": "string"
}
]
}
Bad Request
API error response.
{
"errors": [
"Bad Request"
]
}
Too many requests
API error response.
{
"errors": [
"Bad Request"
]
}
# Curl command
curl -X GET "https://api.ap1.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/v2/network/connections/aggregate" \
-H "Accept: application/json" \
-H "DD-API-KEY: ${DD_API_KEY}" \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY}"