Abfragen für die TABELLE DCRLogErrors
Informationen zur Verwendung dieser Abfragen im Azure-Portal finden Sie im Log Analytics-Lernprogramm. Informationen zur REST-API finden Sie unter "Abfrage".
Erfassungs- und Transformationsfehler aus Datensammlungsregeln
Ruft Protokolle ab, die angibt, dass Ein- und Transformationsfehler während der Erfassung mithilfe von Datensammlungsregeln erfasst werden.
// 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