Skip to content

Tracing a CDN stream route

Since build 5.3.356, a stream route in CDN may be traced with REST API query /rest-api/v3/cdn/stream/trace_route.

The query may be sent to any server pulling a stream to trace

curl -H "Content-Type: application/json" -X POST http://172.28.0.17:8081/rest-api/v3/cdn/stream/trace_route -d '{"streamName": "test-640x360"}'

The stream route on the Edge server is displaying from Edge to Origin like this

{
  "test-640x360": [
    "172.28.0.17(EDGE)",
    "172.28.0.12(TRANSCODER)",
    "172.28.0.11(ORIGIN:PRIMARY)"
  ]
}

The REST API query detailed description is available here