Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1008 Bytes

adtdatahistoryoperation.md

File metadata and controls

42 lines (25 loc) · 1008 Bytes
title description ms.topic ms.service ms.author author ms.date
Example log table queries for ADTDataHistoryOperation
Example queries for ADTDataHistoryOperation log table
reference
azure-monitor
edbaynash
EdB-MSFT
02/18/2024

Queries for the ADTDataHistoryOperation table

Data History operation failure logs

Failed operation events logged when data history messages are sent to the time series database.

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

Data History egress latency

Delivery latency of data history messages sent to the time series database.

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