Telemetry - OfficeDev/microsoft-teams-apps-groupactivities GitHub Wiki
The Group Activities Bot web app logs telemetry to Azure Application Insights . You can go to the respective Application Insights blade of the Azure App Services to view basic telemetry about your services, such as requests, failures, and dependency errors, custom events, traces etc. .
The app integrates with Application Insights to gather bot activity analytics, as described here The app logs a few kinds of events:
Trace
logs keeps the track of application events and also logs the user activities.
Exceptions
logs keeps the records of exceptions tracked in the application.
- This query gives the total number of group activities created in a team.
customEvents
| extend Team = tostring(customDimensions.Team)
| where name == "Group activity created" and Team =="<<Team Id>>"
| summarize count(Team)
- This query gives the total number of teams in which group activity was created
customEvents
| extend Team = tostring(customDimensions.Team)
| where name == "Group activity created"
| summarize dcount(Team)