i'm noob to Kusto, can anyone share how to get the operation/exception that caused failed request (5xx http) in Azure Application Insight log with starttime & endtime provided ?
Many thanks in Advance.
i'm noob to Kusto, can anyone share how to get the operation/exception that caused failed request (5xx http) in Azure Application Insight log with starttime & endtime provided ?
Many thanks in Advance.
In Azure portal Application Insights navigate to logs tab and add the below query (In your case resultCode is 5XX)
requests
| where resultCode == 404
| summarize Count=sum(itemCount) by url
| sort by Count
Below is screenshot from the portal:
Also refer to this swinburger blog, and this SO thread.