Traffic Analytics
Get server-wide top paths
Busiest request paths across every app on the box, summed over the range with per-path latency. The same path served by multiple apps is merged into one entry, giving a correct top-N across all apps rather than a merge of per-app top-N lists.
get/api/traffic/paths
Query parameters
fromstring date-time
Start date in ISO 8601 format (UTC timezone). If not provided, defaults to 1970-01-01T00:00:00Z.
tostring date-time
End date in ISO 8601 format (UTC timezone). If not provided, defaults to current time.
limitinteger
Number of ranked entries to return, applied after summing across buckets. Defaults to 50, capped at 1000.
Response
Server-wide top paths
Example response
[
{
"path": "/api/checkout",
"requests": 5210,
"bytes_out": 41200000,
"p50": 38,
"p95": 190
}
]