v1

latestOpenAPI 3.0.2Apache 2.02026-07-17292234.0 KB
Admin
Statistics

Get packet statistics

Get packet statistics grouped by source and destination IP addresses. Returns the number of packets and total bytes routed for each unique source IP and each unique destination IP separately.

get/api/v1/admin/stats/packets

Response

Success

Example response

{
  "bySource": [
    {
      "ip": "469:1348:ab0c:a1d8::1",
      "packetCount": 1234,
      "byteCount": 567890
    }
  ],
  "byDestination": [
    {
      "ip": "469:1348:ab0c:a1d8::1",
      "packetCount": 1234,
      "byteCount": 567890
    }
  ]
}