Skip to content

Commit 952e3c0

Browse files
committed
update query warnings
1 parent dfe1b4e commit 952e3c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/durable/durable-functions-troubleshooting-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ let queryInstanceId = "XXXXXX"; // edit this
122122
let start = datetime(XXXX-XX-XXTXX:XX:XX);
123123
traces
124124
| where timestamp > start and timestamp < start + 1h
125-
| extend instanceId = customDimensions["prop__InstanceId"]
125+
| extend instanceId = iif(isnull(customDimensions["prop__InstanceId"] ) , customDimensions["prop__instanceId"], customDimensions["prop__InstanceId"] )
126126
| extend logLevel = customDimensions["LogLevel"]
127127
| extend functionName = customDimensions["prop__functionName"]
128128
| extend status = customDimensions["prop__status"]

0 commit comments

Comments
 (0)