From b056504211f3aa725c3d3842e5ce90f18a5d6e64 Mon Sep 17 00:00:00 2001 From: Ash Davies <3853061+DrizzlyOwl@users.noreply.github.com> Date: Mon, 19 Feb 2024 11:07:30 +0000 Subject: [PATCH] Update query KQL for Top 10 Failed Requests Column and Table Names have changed. --- .../Queries/Reports failures/Failed requests top 10.kql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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