Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.
수집 일괄 처리 크기
수집 일괄 처리 크기 시간별 차트 추적
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