Delen via


Query's voor de tabel AGCAccessLogs

Clientaanvragen per uur

Aantal clientaanvragen per uur.

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

5xx HTTP-antwoorden per uur

Het aantal clientaanvragen dat heeft geresulteerd in 5xx-antwoorden per uur.

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

4xx HTTP-antwoorden per uur

Aantal clientaanvragen dat heeft geresulteerd in 4xx-antwoorden per uur.

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