【问题标题】:Throughput Volume Query in Application InsightsApplication Insights 中的吞吐量卷查询
【发布时间】: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


    【解决方案1】:

    正确的方法是使用 sum(itemCount)。那么这个指标对于采样的应用程序是正确的(默认情况下,当遥测项目的数量超过 5 个/秒时,自适应采样将启动)。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-08-05
      相关资源
      最近更新 更多