v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
Cloud Network Monitoring

Get all aggregated connections

Get all aggregated connections.

get/api/v2/network/connections/aggregate

Query parameters

frominteger

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].

tointeger

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_bystring

Comma-separated list of fields to group connections by. The maximum number of group_by(s) is 10.

tagsstring

Comma-separated list of tags to filter connections by.

querystring

Free-form search query using AND/OR/NOT operators, wildcards, and parentheses. When provided, takes precedence over the tags parameter.

limitinteger

The number of connections to be returned. The maximum value is 7500. The default is 100.

Response

OK

Example response

{
  "data": [
    {
      "attributes": {
        "bytes_sent_by_client": 100,
        "bytes_sent_by_server": 200,
        "group_bys": {
          "client_team": [
            "networks"
          ],
          "server_service": [
            "hucklebuck"
          ]
        },
        "packets_sent_by_client": 10,
        "packets_sent_by_server": 20,
        "rtt_micro_seconds": 800,
        "tcp_closed_connections": 30,
        "tcp_delivered_ce": 12,
        "tcp_established_connections": 40,
        "tcp_probe0_count": 2,
        "tcp_rcv_ooo_pack": 15,
        "tcp_recovery_count": 8,
        "tcp_refusals": 7,
        "tcp_reord_seen": 4,
        "tcp_resets": 5,
        "tcp_retransmits": 30,
        "tcp_rto_count": 3,
        "tcp_timeouts": 6
      },
      "id": "client_team:networks, server_service:hucklebuck",
      "type": "aggregated_connection"
    }
  ]
}