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