Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.
Online endpoint failure events
Get the latest Azure ML online endpoints failures.
AmlOnlineEndpointEventLog
| where Message contains "failed"
| 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,
Name,
Message
| order by TimeGenerated desc
| take 100