Forum Discussion
phatcher
Jun 10, 2024Copper Contributor
App Service health checks as KQL
I have health check endpoints on each of my APIs and can see the result timeline via the portal. What I would like to do is to have a query so that I can have visualize this across multiple APIs ...
Kidd_Ip
Feb 04, 2025MVP
Take this:
AppServiceHealthCheckEvents
| where TimeGenerated > ago(30d)
| where Result == "Unhealthy"
| summarize Count = count() by ApiName, InstanceId
| render honeycomb(ApiName, InstanceId, Count)