diff --git a/Azure Services/Application Insights/Queries/Reports failures/Failed requests top 10.kql b/Azure Services/Application Insights/Queries/Reports failures/Failed requests top 10.kql index fc684600..52f95604 100644 --- a/Azure Services/Application Insights/Queries/Reports failures/Failed requests top 10.kql +++ b/Azure Services/Application Insights/Queries/Reports failures/Failed requests top 10.kql @@ -5,8 +5,8 @@ // Resource types: Application Insights // Topic: Reports failures -AppRequests -| where Success == false -| summarize failedCount=sum(ItemCount) by Name +requests +| where success == false +| summarize failedCount=sum(itemCount) by name | top 10 by failedCount desc -| render barchart \ No newline at end of file +| render barchart