如何在ymin
渲染中设置ymax
和timechart
?
let resourceGroupName = "my-resource-group-name";
let hosts = Heartbeat | where ResourceGroup == resourceGroupName | summarize by Computer;
Perf
| where ObjectName == "Processor" and CounterName == "% Processor Time" and Computer in (hosts)
| summarize CPU = avg(CounterValue) by bin(TimeGenerated, 5m), Computer
| render timechart with (ymin=0, ymax=100)
我阅读了文档here,并尝试将其设置为这样,但没有成功:
| render timechart with (ymin=0, ymax=100)
答案 0 :(得分:1)
您所指的文档与您使用的文档/客户端/服务不同。文档指的是Azure数据资源管理器(“ Kusto”),并且它们被称为:
除了注入包含查询中提供的渲染信息的注释(称为“可视化”)之外,渲染操作符对查询返回的结果没有影响。 用户代理可能无法根据指示呈现结果,具体取决于他们对所需呈现指令的支持。
作为示例,至少两个客户端(目前仅可用于查询Azure Data Explorer群集)-Kusto.Explorer和Azure Data Explorer web UX-在渲染时确实考虑了渲染信息图表。