Skip to content

Instantly share code, notes, and snippets.

@brlinton
Created July 23, 2016 19:26
Show Gist options
  • Save brlinton/ef840004c9d5601b721f303d63e6bd00 to your computer and use it in GitHub Desktop.
Save brlinton/ef840004c9d5601b721f303d63e6bd00 to your computer and use it in GitHub Desktop.
Application Insights Server Side Error Query
// Top 25 Server Exceptions
exceptions
| where timestamp >= ago(4h) and client_Type == "PC"
| summarize count(problemId) by problemId, client_Type, method
| order by count_problemId
| take 25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment