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
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