Hello ZZ,
Glad to hear that your issue has been resolved.
After using below query:
let targetInstanceId = "instance-id-of-the-durable-function-call";
let hostId =
requests
| where customDimensions.DurableFunctionsInstanceId == targetInstanceId
| project HostInstanceId = tostring(customDimensions.HostInstanceId)
| take 1;
traces
| where tostring(customDimensions.HostInstanceId) in (hostId)
| project timestamp, message, customDimensions
Note: you must firstly find out what ID the actual started instance gets, then use that to find the logs.
If this answer was helpful, please click "Accept the answer" and mark Yes
, as this can help other community members.
If you have any other questions or are still experiencing issues, feel free to ask in the "comments" section, and I'd be happy to help.