Query per la tabella AmlComputeCpuGpuUtilization
Per informazioni sull'uso di queste query nella portale di Azure, vedere Esercitazione su Log Analytics. Per l'API REST, vedere Query.
Tracciare l'utilizzo del cluster di calcolo
Tracciare l'utilizzo recente della CPU del cluster di calcolo nel tempo per un cluster specifico.
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