An Azure service that provides a hybrid, multi-cloud management platform for APIs.
Hi @Matt Padfield ,
Why you can’t filter by API/Product/Region/etc. in “Analytics” today
The new Analytics blade is actually just an Azure Monitor powered workbook under the covers. It only ships with built-in time-range pickers and category-based drill-downs (like click “APIs” to see a per-API breakdown, or “Products” to see per-product usage), but it doesn’t yet mirror the classic blade’s dropdown filters for API, Product, Region, Subscription, User. There’s no public roadmap item stating that those exact controls will appear in the portal UI, since Microsoft’s pushing everyone toward custom Log Analytics queries & workbooks anyway and the classic blade will be retired in March 2027.
How to get the same filtered views today
- Metrics explorer (Monitoring → Metrics)
- In Metrics you can choose the “Calls” metric (or any other metric API Management emits) and then add dimension filters: API name, Product, Subscription ID, Region, etc.
- Log Analytics workspace + Kusto queries
- Under Monitoring → Diagnostic settings, send your ApiManagementGatewayLogs to a Log Analytics workspace (resource-specific table). Then in Logs you can write a query like
ApiManagementGatewayLogs | where TimeGenerated between (startTime .. endTime) | where ApiId == "<your-api-id>" | where ProductId == "<your-product-id>" | summarize count() by bin(TimeGenerated, 1h), Region, CallerIpAddress- You can parameterize that in a Workbook and even add drop-down selectors for API, Product, Subscription, User, Region, etc.
- Azure Monitor workbooks
- Go to Monitoring → Workbooks → + New, pick the “API Management Analytics” template, and then you can add dropdown parameters bound to your Log Analytics fields.
- REST/SDK-based analytics APIs
- If you prefer code, you can call the API Management REST analytics endpoints or use Azure CLI/PowerShell to pull usage data filtered by API or product.
Hope this helps!
If the resolution was helpful, kindly take a moment to click on and click on Yes for was this answer helpful. And, if you have any further query do let us know.