Kueri untuk tabel AGCAccessLogs
Untuk informasi tentang menggunakan kueri ini di portal Azure, lihat tutorial Analitik Log. Untuk REST API, lihat Kueri.
Permintaan klien per jam
Jumlah permintaan klien per jam.
AGCAccessLogs
| summarize AggregatedValue = count() by bin(TimeGenerated, 1h), _ResourceId
| render timechart
Respons HTTP 5xx per jam
Jumlah permintaan klien yang menghasilkan respons 5xx per jam.
AGCAccessLogs
| where HttpStatusCode > 499 and HttpStatusCode < 600
| summarize AggregatedValue = count() by bin(TimeGenerated, 1h), _ResourceId
| render timechart
Respons HTTP 4xx per jam
Jumlah permintaan klien yang menghasilkan respons 4xx per jam.
AGCAccessLogs
| where HttpStatusCode > 399 and HttpStatusCode < 500
| summarize AggregatedValue = count() by bin(TimeGenerated, 1h), _ResourceId
| render timechart