Dela via


Frågor för DCRLogErrors-tabellen

Information om hur du använder dessa frågor i Azure-portalen finns i Log Analytics-självstudien. Information om REST-API:et finns i Fråga.

Inmatnings- och transformeringsfel från datainsamlingsregler

Hämtar loggar som anger inmatnings- och transformeringsfel under logginmatning med hjälp av datainsamlingsregler.

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