ADTDataHistoryOperation 數據表的查詢
如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
數據歷程記錄作業失敗記錄
當資料記錄訊息傳送至時間序列資料庫時,記錄的失敗作業事件。
ADTDataHistoryOperation
| where ResultType == "Failure"
| take 100
數據歷程記錄輸出延遲
傳送至時間序列資料庫的數據歷程記錄訊息傳遞延遲。
ADTDataHistoryOperation
| where OperationName == "Microsoft.DigitalTwins/digitalTwinsInstances/datahistory/messages/send/action"
| summarize percentile(DurationMs, 99) by bin(TimeGenerated, 5m)