Queries for the AzureMonitorPipelineLogErrors table

For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.

Azure Monitor Pipeline errors

Retrieves logs indicating errors during data ingestion, transformation, and export in Azure Monitor Pipeline.

// This query helps list the most recent 10 logs for failures during Azure Monitor Pipeline operations.
AzureMonitorPipelineLogErrors
//| where OperationName == "Ingestion" // Uncomment this line to see Ingestion errors
//| where OperationName == "Transform" // Uncomment this line to see Transform errors
//| where OperationName == "Export" // Uncomment this line to see Export errors
| sort by TimeGenerated desc
| limit 10