AmlOnlineEndpointTrafficLog テーブルのクエリ
Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。
オンライン エンドポイントの失敗した要求
オンライン エンドポイントに対して失敗した最新の 100 件の推論要求を取得します。
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