Запросы для таблицы 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