gpt4 book ai didi

Azure Monitor(Application Insights)日志查询图表 - Y 轴上有什么?

转载 作者:行者123 更新时间:2023-12-02 07:36:22 25 4
gpt4 key购买 nike

如何选择 Application Insights(Azure Monitor?)图表中 Y 轴显示的内容? enter image description here

我在 Application Insights 中有自定义事件,并且想要使用自定义指标构建时间序列图表。

但 Y 轴上显示的是 itemCount,而不是我的指标。如何选择 Y 轴指标?

最佳答案

正确获取时间序列图表的关键是从查询中获取结果集中的所有时间和指标信息。

requests 表为例(您可以根据需要将其应用于 customEvents 数据):

# Simple time-series chart
requests
| summarize Requests = count() by bin(timestamp, 1h)
| render timechart

输出: Simple time-series chart这里,查询控件使用时间戳作为 X 轴,使用请求作为 Y 轴。

接下来,多个指标也可以绘制为:

# Time-series chart with multiple metrics
requests
| summarize Requests = count(), Users = dcount(user_Id) by bin(timestamp, 1h)
| render timechart

输出: Plot multiple metrics查询控件在 X 轴上使用时间戳,在 Y 轴上使用请求和用户作为单独的系列。

还有 make-series 运算符,它可以选择为空存储桶提供默认值。

requests
| where name contains "POST"
| make-series Requests = count() default = 0 on timestamp from ago(1d) to now() step 1h by RequestName = name
| render timechart

输出: make-series operator

如需更多阅读,请参阅以下资源:

关于Azure Monitor(Application Insights)日志查询图表 - Y 轴上有什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63196916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com