Abfragen für die AppExceptions-Tabelle

Die 3 häufigsten Browserausnahmen

Was waren heute die höchsten gemeldeten Ausnahmen?

AppExceptions
| where notempty(ClientBrowser) and ClientType == 'Browser'
| summarize total_exceptions = sum(ItemCount) by ProblemId
| top 3 by total_exceptions desc