다음을 통해 공유


ADFActivityRun 테이블에 대한 쿼리

작업 실행 가용성

작업 실행의 가용성을 제공합니다.

// To create an alert for this query, click '+ New alert rule'
ADFActivityRun
| 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

활동이 최신 상태를 실행합니다.

최신 작업 실행 상태를 반환합니다.

ADFActivityRun
| summarize argmax(TimeGenerated, * ) by ActivityRunId, Status, _ResourceId