다음을 통해 공유


ADTDataHistoryOperation 테이블에 대한 쿼리

데이터 기록 작업 실패 로그

데이터 기록 메시지가 시계열 데이터베이스로 전송될 때 기록된 실패한 작업 이벤트입니다.

ADTDataHistoryOperation
| where ResultType == "Failure"
| take 100

데이터 기록 송신 대기 시간

시계열 데이터베이스로 전송된 데이터 기록 메시지의 배달 대기 시간입니다.

ADTDataHistoryOperation
| where OperationName == "Microsoft.DigitalTwins/digitalTwinsInstances/datahistory/messages/send/action"
| summarize percentile(DurationMs, 99) by bin(TimeGenerated, 5m)