Share via


AGCAccessLogs 數據表的查詢

每小時的用戶端要求數

每小時用戶端要求的計數。

AGCAccessLogs
| summarize AggregatedValue = count() by bin(TimeGenerated, 1h), _ResourceId
| render timechart

每小時 5xx HTTP 回應

導致每小時 5xx 回應的用戶端要求計數。

AGCAccessLogs
| where HttpStatusCode > 499 and HttpStatusCode < 600
| summarize AggregatedValue = count() by bin(TimeGenerated, 1h), _ResourceId
| render timechart

每小時 4xx HTTP 回應

導致每小時 4xx 回應的用戶端要求計數。

AGCAccessLogs
| where HttpStatusCode > 399 and HttpStatusCode < 500
| summarize AggregatedValue = count() by bin(TimeGenerated, 1h), _ResourceId
| render timechart