DCRLogErrors テーブルのクエリ
Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。
データ収集ルールからの取り込みと変換のエラー
データ収集ルールを使用して、ログ インジェスト中のインジェストと変換の失敗を示すログを取得します。
// This query helps list the most recent 10 logs for failures during log ingestion/transformation.
DCRLogErrors
//| where OperationName == "Ingestion" // Uncomment this line to see Ingestion errors
//| where OperationName =="Transformation" // Uncomment this line to see Transformation errors
| sort by TimeGenerated desc
| limit 10