共用方式為


AmlComputeJobEvent 數據表的查詢

如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢

取得失敗的工作

取得前100個失敗的工作。

AmlComputeJobEvent
| where EventType == "JobFailed"
| project  TimeGenerated, ClusterId, EventType, ExecutionState, ToolType, JobErrorMessage, ErrorDetails
| limit 100

取得作業的記錄

取得特定作業名稱的前 100 筆記錄。

AmlComputeJobEvent
| where JobName == "automl_a9940991-dedb-4262-9763-2fd08b79d8fb_setup"
| project  TimeGenerated, ClusterId, EventType, ExecutionState, ToolType
| limit 100

顯示前 5 個最長的作業執行

顯示前 5 個最長的作業執行。

AmlComputeJobEvent
| where OperationName == "JobSubmitted"
| join kind = inner (AmlComputeJobEvent
        | where OperationName == "JobSucceeded"
        | project StopTime=TimeGenerated, JobId)
    on JobId 
|project Duration=(StopTime-TimeGenerated), ExperimentName, WorkspaceName, ClusterName, JobName
|top 5 by Duration desc nulls last