共用方式為


AmlComputeCpuGpuUtilization 數據表的查詢

繪製計算叢集使用率

繪製特定叢集一段時間的最近計算叢集 CPU 使用率。

AmlComputeCpuGpuUtilization
| join kind = inner (AmlComputeJobEvent
        | where  NodeId!="" and EventType =="JobSucceeded"
        | project NodeId, ClusterName)
    on NodeId 
| project TimeGenerated, todecimal(Utilization),  ClusterName, DeviceType
| where ClusterName=="Cpu-cluster" and DeviceType=="CPU"
| limit 100
| render timechart