> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lerian.studio/llms.txt
> Use this file to discover all available pages before exploring further.

# Viewing execution details

> Inspect a workflow execution to understand its progress, review outputs, and diagnose failures node by node.

You can view detailed information about any workflow execution to understand its progress, review outputs, and diagnose failures.

## Opening the execution detail

***

To view execution details:

<Steps>
  <Step>
    On the **Executions** page, find the execution you want to inspect.
  </Step>

  <Step>
    Click the execution row or select **View Details** from the action menu (<Icon icon="ellipsis-vertical" />).
  </Step>

  <Step>
    An **Execution Detail** side panel will open with the full execution information.
  </Step>
</Steps>

## Execution detail panel

***

The detail panel displays the following information:

### Summary

| Field            | Description                                            |
| ---------------- | ------------------------------------------------------ |
| **Execution ID** | Unique identifier for the execution.                   |
| **Workflow ID**  | Unique identifier of the workflow that was executed.   |
| **Started At**   | Timestamp when the execution was triggered.            |
| **Completed At** | Timestamp when the execution finished (if applicable). |
| **Duration**     | Total time elapsed from start to completion.           |

<Tip>
  The current state of the execution will appear as a tag at the top of the page.
</Tip>

### Node execution log

The panel shows a step-by-step log of each node that was executed during the workflow run. For each node, you can see:

* **Node name** — the name of the node as defined in the workflow canvas.
* **Node type** — whether it is a Trigger, Executor Call, or Conditional.
* **Status** — whether the node executed successfully or failed.
* **Input data** — the data received by the node.
* **Output data** — the data produced by the node.
* **Error details** — if the node failed, the error message and relevant context.

<Tip>
  Use the node execution log to trace through the workflow step by step. When an execution fails, the log helps you identify exactly which node encountered the error and what data it was processing.
</Tip>
