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