From 3b2d7dcec64c948bf2e4205af4e12c96dec3bce1 Mon Sep 17 00:00:00 2001 From: Ali Youssefi Date: Tue, 29 Jul 2025 10:47:49 -0500 Subject: [PATCH] Create Most_Used_Topics.kql --- .../Queries/Most_Used_Topics.kql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Azure Services/Power Platform/Microsoft Copilot Studio/Queries/Most_Used_Topics.kql diff --git a/Azure Services/Power Platform/Microsoft Copilot Studio/Queries/Most_Used_Topics.kql b/Azure Services/Power Platform/Microsoft Copilot Studio/Queries/Most_Used_Topics.kql new file mode 100644 index 00000000..2939aaeb --- /dev/null +++ b/Azure Services/Power Platform/Microsoft Copilot Studio/Queries/Most_Used_Topics.kql @@ -0,0 +1,10 @@ +// Author: Ali Youssefi +// Display name: Display most used topics by agent in Copilot Studio +// Description: Summary of most used topics displaying the topic name, number of invocations by agent. +// Categories: Power Platform +// Resource types: Copilot Studio +// Topic: Usage Analytics +customEvents +| where name == 'TopicStart' +| summarize NumOfTopic = count() by tostring(customDimensions.TopicName), cloud_RoleInstance +| where NumOfTopic > 1 \ No newline at end of file