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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s