Как я могу установить 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)