Share via


Query per la tabella AmlComputeCpuGpuUtilization

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