Form Performance
AppPageViews
| summarize RequestsCount=sum(ItemCount), AverageDuration=avg(DurationMs), percentiles(DurationMs, 50, 95, 99) by Name
| order by AverageDuration desc Page request trend:
AppPageViews
| summarize count_sum = sum(ItemCount) by bin(TimeGenerated,30m), _ResourceId
| render timechartUsers most effected by slow page loads:
AppPageViews
| where Name == "ReturnTable"
| summarize count() by UserId
| order by count_ desc Show the activity ids of the most effected user and form:
AppPageViews
| where Name == "<--Form name here-->" and UserId == "<--User id here-->"
| summarize count() by UserId, tostring(Properties.ActivityId), DurationMs
| order by DurationMsWhat happened during the poorly performing activity id?:
AppPageViews
| where tostring(Properties.ActivityId) == "<--Activity id here-->"Last updated
Was this helpful?