7

我想在时间表上缩放数据系列,以便它与其他系列可见。前两个系列代表成功和失败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,因此它本质上是原点处的一条平线。

Kusto 时间表

更新 5/3

UX 客户端是 Azure 门户的 Application Insights Analytics 小部件。

4

1 回答 1

3

以下是如何使用 ysplit 为每个系列创建自定义 y 轴的示例:

range timestamp from ago(3d) to now() step 1m
| extend Event = rand(100)
| extend EventCategory = case(
            Event < 80, 1, 
            Event < 99, 2,
            3)
| summarize Count=count() by tostring(EventCategory), bin(timestamp, 1h)
| render timechart with (ysplit=axes)

我无法确定您的查询,但我认为也许只是添加with (ysplit=axes)到末尾就足以为您提供所需的行为。

于 2021-07-02T22:09:36.800 回答