Condividi tramite


Query per la tabella AGCAccessLogs

Per informazioni sull'uso di queste query nel portale di Azure, vedere la Guida a Log Analytics. Per l'API REST, vedere Query.

Richieste client all'ora

Numero di richieste client ogni ora.

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

Risposte HTTP 5xx all'ora

Numero di richieste client che hanno generato risposte 5xx ogni ora.

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

Risposte HTTP 4xx all'ora

Numero di richieste client che hanno generato risposte 4xx ogni ora.

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