gpt4 book ai didi

azure - 如何在 Application Insights Analytics 中对图表/数据桶进行零填充

转载 作者:行者123 更新时间:2023-12-03 18:30:52 25 4
gpt4 key购买 nike

我正在尝试在 Application Insights 中绘制一个总和/计数指标随时间变化的面积图:

customEvents
| where timestamp > ago(7d)
| summarize count() by bin(timestamp, 1h)
| render areachart

我看到的是,如果某些桶中没有数据,那么图表不会下降到 0。相反,两个点相连,并且人们认为有一些数据,但实际上没有。

问题-如何获得零填充面积图(对应红墨水图)?

enter image description here

最佳答案

有多种方法可以实现这一目标。

make-series运算符允许为没有数据进行聚合的时间段设置默认值:

customEvents
| where timestamp > ago(10m)
| make-series count() default=0 on timestamp in range(ago(10m), now(), 1m)
| render areachart

这将生成零填充的数据数组和| render 将相应地构建图表。

如果| Summary 是首选,您可以使用 range 自己创建零填充范围运算符:

let defaultValue = 0;
range timestamp from floor(ago(10m),1m) to floor(now() + 10m,1m) step 1m
| join kind=leftouter
(
customEvents
| where timestamp > floor(ago(10m),1m) and timestamp < floor(now(),1m)
| summarize Value=count() by bin(timestamp, 1m)
) on timestamp
| project timestamp, value = iff(isnotempty(Value), Value, defaultValue)
| render areachart

确保使用 join kind=leftouter 使连接左侧的所有时间戳都出现在输出中。

关于azure - 如何在 Application Insights Analytics 中对图表/数据桶进行零填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50536328/

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