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