Queries for the AppExceptions table

Top 3 browser exceptions

What were the highest reported exceptions today?

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