Queries for the AppExceptions table
For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.
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