ADXIngestionBatching 테이블에 대한 쿼리

수집 일괄 처리 크기

수집 일괄 처리 크기 시간 차트 추적

ADXIngestionBatching
| where TimeGenerated > ago(1d)
| summarize sum(BatchSizeBytes) by Database, Table, bin(TimeGenerated, 10m)
| render timechart

수집 일괄 처리 요약

수집 일괄 처리 요약(데이터베이스, 테이블 및 유형별).

ADXIngestionBatching
| where TimeGenerated > ago(1d)
| summarize count() by Database, Table, BatchingType, bin(TimeGenerated, 10m)

수집 일괄 처리 기간 시간 차트

수집 일괄 처리 기간 시간 차트를 추적합니다.

ADXIngestionBatching
| where TimeGenerated > ago(1d)
| summarize sum(BatchTimeSeconds) by Database, Table, bin(TimeGenerated, 10m)
| render timechart