共用方式為


DCRLogErrors 資料表的查詢

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

資料收集規則中的擷取和轉換錯誤

擷取記錄,以指出使用資料收集規則進行記錄擷取期間發生擷取和轉換失敗。

// 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