This page is not yet available in Spanish. We are working on its translation. If you have any questions or feedback about our current translation project, feel free to reach out to us!
Cloud Network Monitoring
The Cloud Network Monitoring API allows you to fetch aggregated connections and their attributes. See the Cloud Network Monitoring page for more information.
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.
The definition of SingleAggregatedConnectionResponseArray object.
Expand All
Campo
Tipo
Descripción
data
[object]
The SingleAggregatedConnectionResponseArraydata.
attributes
object
The definition of SingleAggregatedConnectionResponseDataAttributes object.
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 attributesgroup_bys.
<any-key>
[string]
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.