Share via


AGCAccessLogs tablosu için sorgular

Saat başına istemci istekleri

İstemci isteklerinin saatlik sayısı.

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

Saatte 5 kat HTTP yanıtı

Saatte 5xx yanıtla sonuçlanan istemci isteklerinin sayısı.

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

Saatte 4x http yanıtı

Saatte 4xx yanıtla sonuçlanan istemci isteklerinin sayısı.

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