Queries for the AmlOnlineEndpointTrafficLog table
For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.
Online endpoint failed requests
Get the latest 100 failed inferencing requests to the online endpoint.
AmlOnlineEndpointTrafficLog
| where ResponseCode != "200" and ResponseCode != "100"
| project
TimeGenerated,
Location,
OperationName,
Method,
Path,
Subscription = _SubscriptionId,
AzureMLWorkspaceId,
EndpointName,
DeploymentName,
Protocol,
ResponseCode,
ResponseCodeReason,
ModelStatusCode,
ModelStatusReason,
RequestPayloadSize,
ResponsePayloadSize,
UserAgent,
XRequestId,
XMSClientRequestId,
TotalDurationMs,
RequestDurationMs,
ResponseDurationMs,
RequestThrottlingDelayMs,
ResponseThrottlingDelayMs
| top 100 by TimeGenerated