Application Insights过滤数据输出请求

时间:2019-02-26 03:28:12

标签: azure-application-insights

我在应用程序见解中有一张图表,我想看看在一段时间内是什么请求导致了64MB以上的海量数据。它耗尽了我们的应用程序内存。有谁知道如何向下过滤Application Insights数据以查看其内容?

[1]: https://i.stack.imgur.com/Z9Pd9.png

1 个答案:

答案 0 :(得分:0)

首先,您可以在Application Insights中的Analytics(分析)中运行以下查询。由于通过运行此查询有时间(UTC),因此可以过滤请求。

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)))