Application Insights中的吞吐量量查询

问题描述 投票:0回答:1

我正在尝试通过使用以下查询来获取吞吐量(量)指标>>

requests
// additional filters can be applied here
| where timestamp > ago(24h)
| where client_Type != "Browser"
| summarize count() by bin(timestamp, 5m)
| extend request='Volume'
// render result in a chart
| render timechart

所以我的问题是对于Volume,我们使用Count()还是sum(itemCount)?其中哪一个更准确地获取每个间隔的体积(通过量)详细信息?

我正在尝试通过使用以下查询请求来获取吞吐量(量)指标//可以在此处应用其他过滤器|时间戳记> ago(24h)|其中client_Type!=“浏览器” |总结...

performance azure monitoring azure-application-insights dashboard
1个回答
0
投票

正确的方法是使用sum(itemCount)。然后,该度量标准将对采样的应用程序是正确的(默认情况下,当遥测项的数量超过5 /秒时,自适应采样将启动)。

© www.soinside.com 2019 - 2024. All rights reserved.