An Azure service that automates the access and use of data across clouds without writing code.
The new run history experience in Azure Logic Apps can display and inspect runs, including actions inside loops, but there are known limitations around reruns and complex loop/concurrency scenarios.
For inspection and troubleshooting without expanding the loop in the portal:
- Open the workflow’s run history instead of expanding the loop inline:
- For Consumption: In the Azure portal, open the logic app → Overview → Runs history, then select the specific run.
- For Standard (stateful workflows): In the workflow menu under Tools, select Run history, then select the run.
- From the run details page, select the loop action itself (without expanding every iteration) to view high-level status and duration.
- To inspect specific actions inside the loop without relying on the new UI expansion behavior, use diagnostics logging with Azure Monitor logs as described in the run-history documentation. This allows querying trigger, run, and action events (including loop iterations) outside the portal UI.
If the portal consistently crashes when expanding a For each loop:
- Avoid using the “rerun from this action” feature on
For eachloops, as rerun support explicitly excludesFor eachactions and all actions inside and after the loop. Instead, rerun the entire workflow:- Open Runs history → select the run → Resubmit.
- If detailed per-iteration inspection is required, enable diagnostics logging to Azure Monitor logs and analyze the loop’s actions there rather than expanding the loop in the portal.
- If the crash persists across browsers and sessions, capture the run’s Correlation Id from Run details and open a support ticket so the portal issue can be investigated with that identifier.
References: