【发布时间】:2020-10-02 16:28:04
【问题描述】:
我正在尝试使用以下查询获取吞吐量(卷)指标
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
所以我的问题是我们使用 Count() 还是 sum(itemCount) ?其中哪一个更准确地获取每个间隔的成交量(吞吐量)详细信息??
【问题讨论】:
标签: performance azure monitoring azure-application-insights dashboard