次の方法で共有


ADFPipelineRun テーブルのクエリ

PipelineRuns 可用性

パイプライン実行の可用性を提供します。

// To create an alert for this query, click '+ New alert rule'
ADFPipelineRun
| where Status != 'InProgress' and Status != 'Queued'
| where FailureType != 'UserError'
| summarize availability = 100.00 - (100.00*countif(Status != 'Succeeded') / count())  by bin(TimeGenerated, 1h)), _ResourceId
| order by TimeGenerated asc
| render timechart

パイプラインで最新の状態が実行される

パイプライン実行の最新の状態を返します。

ADFPipelineRun
| summarize argmax(TimeGenerated, * ) by RunId, Status, _ResourceId