Queries for the AHCIDiagnosticLogs table

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

Most recent actionable Interop logs

Get user actionable logs generated by Interop service.

AHCIDiagnosticLogs
| order by TimeGenerated desc
| take 100

Log count per correlation ID

Get the count of the logs emitted from Interop service per correlation ID.

AHCIDiagnosticLogs
| summarize Count = count() by CorrelationId