DCRLogErrors 表的查询

数据收集规则中的引入和转换错误

使用数据收集规则检索指示日志引入期间引入和转换失败的日志。

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