如何设置和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)
我在这里阅读了文档,并尝试将其设置为这样,但没有奏效:
| render timechart with (ymin=0, ymax=100)