AmlComputeCpuGpuUtilization 表的查询
有关在 Azure 门户中使用这些查询的信息,请参阅 Log Analytics 教程。 有关 REST API,请参阅查询。
绘制计算群集利用率
绘制特定群集一段时间的最新计算群集 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