Aderderian
Aderderian

Reputation: 21

Application Insights filter Data Out request

I have a chart in application insights and I want to see what request resulted in this massive data out of 64MB during a time period. It drained our application memory. Does anyone know how to filter the Application Insights data down to see what this was?

[1]: https://i.sstatic.net/Z9Pd9.png

Upvotes: 1

Views: 1220

Answers (1)

Kamran
Kamran

Reputation: 1380

For start you can run the following query in Analytics in Application Insights. Since you have the time (UTC) by running this query you can filter the requests.

requests
| extend itemType = iif(itemType == 'request',itemType,"")
| where (itemType == 'request' and (timestamp >= datetime(2019-02-26T07:21:00.000Z) and timestamp <= datetime(2019-02-26T07:22:00.000Z)))

Upvotes: 1

Related Questions