Reputation: 21
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?
Upvotes: 1
Views: 1220
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