Queries for the AmlOnlineEndpointConsoleLog table

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

Online endpoint console logs

Get latest 100 online endpoint console log records.

AmlOnlineEndpointConsoleLog
| parse kind=regex flags=i _ResourceId with ".*?/RESOURCEGROUPS/" ResourceGroup "/PROVIDERS/MICROSOFT.MACHINELEARNINGSERVICES/WORKSPACES/" Workspace "/ONLINEENDPOINTS/" EndpointName
| project
    TimeGenerated,
    Subscription = _SubscriptionId,
    ResourceGroup,
    Workspace,
    EndpointName,
    DeploymentName,
    InstanceId,
    ContainerName,
    ContainerImageName,
    Message
| top 100 by TimeGenerated