我想在时间表上缩放数据系列,以便它与其他系列可见。前两个系列代表成功和失败requests
,第三个系列代表customEvent
应用程序试图自我纠正。所有三个系列都被绘制,但由于幅度的相对差异,重新启动系列本质上是 0 处的线。ysplit
操作员选项的 文档render
表明这axes
将提供我正在寻找的内容,但这些值似乎都不会影响图表。
requests
| where timestamp > ago(3d) and name has "POST /v1/validation"
| union customEvents | where timestamp > ago(3d)
| extend Event=case(itemType == 'request' and success == "True", "Succeeded", itemType == "request" and success == "False", "Failed", "Restarted")
| summarize Count=count() by Event, bin(timestamp, 1h)
| render timechart
这是使用 Restarted 系列渲染的时间表,但存储桶中的最高数字是 2,因此它本质上是原点处的一条平线。
更新 5/3
UX 客户端是 Azure 门户的 Application Insights Analytics 小部件。