> ## 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

> Open the Execution Detail panel in the Flowker Console to view summary fields and, after an execution completes or fails, its step results, output data, and errors.

You can inspect the status of any workflow execution. After an execution completes or fails, you can also review its step results, outputs, and errors.

## 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                                            |
| ----------------- | ------------------------------------------------------ |
| **Workflow Name** | Name of the workflow that was executed.                |
| **Workflow ID**   | Unique identifier of the workflow that was executed.   |
| **Execution ID**  | Unique identifier for the execution.                   |
| **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>

<Note>
  Step results are available only after an execution reaches **Completed** or **Failed**. Pending and running executions do not have results yet.
</Note>

### Execution step results

For a completed or failed execution, Flowker records results for the executed workflow steps. Trigger nodes start traversal and do not create a step result. Executor calls, conditionals, and actions do. Each step result includes:

* **Step name** — the name recorded for the executed step.
* **Node ID** — the identifier of the node that produced the step.
* **Status** — whether the step completed successfully or failed.
* **Output data** — the data produced by the step.
* **Error details** — if the step failed, the error message and relevant context.

<Tip>
  Use the execution step results to trace through the workflow. When an execution fails, they help you identify which step encountered the error and its output.
</Tip>
