Queries for the EdgeActionServiceLog table

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

Top 100 Log Messages by Edge Action Version

Top 100 log messages emitted by an action, grouped by action version.

EdgeActionConsoleLog
| summarize InvocationCount = count() by EdgeActionVersion, LogMessage
| top 100 by InvocationCount

Internal Errors by Edge Action Version

Count of internal errors emitted by Edge Actions, grouped by action version.

EdgeActionServiceLog
| where LogMessage contains "Internal Error"
| summarize ErrorCount = count() by EdgeActionVersion