Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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