Frågor för tabellen AmlOnlineEndpointTrafficLog
Information om hur du använder dessa frågor i Azure Portal finns i Log Analytics-självstudien. Information om REST-API:et finns i Fråga.
Onlineslutpunktsbegäranden misslyckades
Hämta de senaste 100 misslyckade slutsatsdragningsbegäranden till onlineslutpunkten.
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