Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.01 KB

amlonlineendpointeventlog.md

File metadata and controls

39 lines (30 loc) · 1.01 KB
title description ms.topic ms.service ms.author author ms.date
Example log table queries for AmlOnlineEndpointEventLog
Example queries for AmlOnlineEndpointEventLog log table
reference
azure-monitor
edbaynash
EdB-MSFT
02/18/2024

Queries for the AmlOnlineEndpointEventLog table

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