다음을 통해 공유


DCRLogErrors 테이블에 대한 쿼리

Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 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