Dashboard with CDN Information
The current CDN portal provides the required information, but it would be good to have something in the form of an Dashboard, which can provide an complete view of the performance and utilization.
Region/Country wise cache status and the hit and miss ration is good to have to understand the traffic and to be aware of the performance from the different regions.

1 comment
-
Laurence 'GreenReaper' Parry commented
You can do the latter now on MS CDN by piping the raw log diagnostic data through to an analysis workspace and running a query similar to this (once it's collected them - it could take a few hours):
AzureDiagnostics
| where Category == "AzureCdnAccessLog"
| summarize request_count = count(), totalResponseBytes = sum(toint(responseBytes_s)) by pop_s, cacheStatus_s
| order by request_count desc