Frågor för tabellen AmlComputeCpuGpuUtilization
Information om hur du använder dessa frågor i Azure Portal finns i Log Analytics-självstudien. Information om REST-API:et finns i Fråga.
Rita beräkningsklusteranvändning
Rita upp den senaste processoranvändningen för beräkningskluster över tid för ett specifikt kluster.
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