Telemetry - OfficeDev/microsoft-teams-apps-timetally GitHub Wiki
Time Tally app logs telemetry to Azure Application Insights. You can go to the Application Insights blade of the Azure App Service to view basic telemetry about your services, such as requests, failures, and dependency errors, custom events, traces.
App integrates with Application Insights to gather bot activity analytics, as described here.
App logs a few kinds of events:
Events
logs keeps the track of application events and also logs the user activities like:
- Timesheet is saved or submitted
- Project is created
- Timesheet is approved/rejected
- Total and Unique users per month
- Average Response Time
Exceptions
logs keeps the records of exceptions tracked in the application.
Application Insights queries:
- This query gives total number of unique users of bot.
customEvents
| extend User = tostring(customDimensions.userId)
| summarize dcount(User)
- This query gives number of users who have submitted timesheet.
- This query gives number of projects created per week/month.
TBD```
- This query gives average response time of requests.
requests | summarize avg(duration)