Execution Log

The Execution Log is a built-in monitoring and debugging tool in Studio. It allows you to track the history of your flow runs, check their success or failure statuses, and inspect the exact data payloads passed between each step of your integration.

Access to Execution Log

While viewing your Flow Template, look at the bottom control bar and click the Execution Log tab.

Searching and Filtering Runs

When you open the log, you will see a main table listing all recent executions. Use the tools at the top of the panel to narrow down the list:


ToolDescription
Search BarType specific keywords to quickly find a particular flow run
Date PickerFilter the logs by a specific date or a custom time range
Status FilterFilter by outcome: ● Success● Warning● Cancelled● In progress● Failed
RefreshClick the circular arrow icon to instantly update the table with the most recent runs

Find a Specific Run by Execution ID

To copy an Execution ID from an existing run, click the three-dot (⋮) menu on the transaction and select Execution ID. A confirmation appears once it's copied to your clipboard.

Flow Execution Details 

Each row in the table represents one execution run. Here is what each column means:

ColumnDescription
NameThe flow step or trigger that executed
StatusResult of the run: Success, Failed, Warning, Cancelled, or In progress
TenantThe environment the flow ran in
SizeSize of the data processed in this run
DurationTotal time taken to complete the run
SuccessNumber of records processed successfully
IgnoredNumber of records skipped during execution
ErrorsNumber of records that failed during execution
ActionsClick View Data to inspect the input and output of each loop

Inspecting Step-by-Step Details

To see exactly what happened during a specific run:

1

Click on any row in the main transaction to expand it.

2

A detailed breakdown will appear, listing every individual step that occurred within that run.

3

You can see the individual Status, Duration, and Error count for each node in the chain.

Input & Output Data

It allows you to see the exact data that was sent and received by each system.

1

In the expanded step-by-step view, locate the step you want to inspect and click View Data on the right.

2

A side panel will open displaying the data payload, split into Input (data sent to the node) and Output (data returned by the node).

3

Click the download icon at the top right of the panel to save the Input or Output JSON files to your computer for further analysis.

Cancelling a Running Transaction

Sometimes you spot a problem while a flow is still running, wrong mapping, bad input, or the target system is acting up. Instead of waiting for it to finish or fail on its own, you can stop it on the spot.

On any transaction with the status In progress, open the three-dot (⋮) menu and choose Cancel Transaction. Confirm the action, and the run stops immediately. Works for all triggers, manual, scheduled, and webhook-based.

Important

Cancellation is immediate, any step already in progress is interrupted, which may leave partial updates in the destination system. Check the affected records before re-running the flow.


Related Topics