Azure ポータルでこれらのクエリを使用する方法については、Log Analytics チュートリアルを参照してください。 REST API については、「 Query」を参照してください。
コンピュートクラスターの利用状況をプロットする
特定のクラスターにおける最近のコンピューティング クラスターの 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