Cool AppInsights Analytics: Piechart of request failures by response code

Here is an awesome little pie chart query, to get the most common failures – by response code and operation name.

requests
 | where timestamp > ago(3h)
 | where success == "False"
 | summarize count() by resultCode, operation_Name
 | render piechart

PieChart

One thought on “Cool AppInsights Analytics: Piechart of request failures by response code

Leave a comment