AEWComputePipelinesLogs テーブルのクエリ
Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。
AEWComputePipelinesLogs は毎日のタスク数を取得します
選択した時間範囲のコンピューティング パイプライン レコードから毎日のタスク数を取得します。
AEWComputePipelinesLogs
| where EventName =~ "ScorecardRequestSucceeded" or EventName =~ "ScorecardRequestFailed"
| where Properties.ExperimentationGroup =~ "test~ExperimentationGroup"
| summarize Count = count() by Date = bin(TimeGenerated, 1d), ExperimentationGroup = tostring(Properties.ExperimentationGroup)
| sort by Date
AEWComputePipelinesLogs get failed tasks detail
選択した時間範囲のコンピューティング パイプライン レコードから、失敗した最新の 100 個のタスクの詳細を取得します。
AEWComputePipelinesLogs
| where EventName =~ "ScorecardRequestFailed"
| where Properties.ExperimentationGroup =~ "test~ExperimentationGroup"
| project
TimeGenerated
,EventName
,ExperimentationGroup = Properties.ExperimentationGroup
,AnalysisType = Properties.AnalysisType
| sort by TimeGenerated desc
| take 100
AEWComputePipelinesLogs は実行時間の長いジョブを取得します
過去 7 日間のコンピューティング パイプライン レコードから実行時間の長いジョブを取得します。
AEWComputePipelinesLogs
| where EventName =~ "CosmosJobUtilization"
| where Properties.ExperimentationGroup =~ "test~ExperimentationGroup"
| where todouble(Properties.JobRunningInSeconds) >= 24 * 60 * 60
| project
TimeGenerated
,EventName
,ExperimentationGroup = Properties.ExperimentationGroup
,AnalysisType = Properties.AnalysisType
| sort by TimeGenerated desc
AEWComputePipelinesLogs get task E2E latency time
選択した時間範囲のコンピューティング パイプライン レコードのタスク E2E 待機時間を取得します。
AEWComputePipelinesLogs
| where EventName =~ "ScorecardRequestSucceeded" or EventName =~ "ScorecardRequestFailed"
| where Properties.ExperimentationGroup =~ "test~ExperimentationGroup"
| summarize
ScorecardRequestTimeInHoursP99 = percentile(todouble(Properties.ScorecardProcessingInSeconds) / 60 / 60, 99)
,ScorecardRequestTimeInHoursAvg = avg(todouble(Properties.ScorecardProcessingInSeconds) / 60 / 60)
by Date = bin(TimeGenerated, 1d), ExperimentationGroup = tostring(Properties.ExperimentationGroup)
| sort by Date, ExperimentationGroup