> For the complete documentation index, see [llms.txt](https://docs.n8n.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.n8n.io/build/understand-workflows/understand-executions.md).

# Understand executions

An execution is a single run of a workflow.

An execution is a single run of a workflow.

## In this section

* [Manual, partial, and production executions](/build/understand-workflows/understand-executions/types-of-executions.md): how manual, partial, and production executions differ.
* [View all executions](/build/understand-workflows/understand-executions/view-all-executions.md): view and filter all executions across all your workflows.
* [View executions for a single workflow](/build/understand-workflows/understand-executions/view-executions-for-a-single-workflow.md): view and filter executions for the workflow currently open on the canvas.
* [Debug and re-run past executions](/build/understand-workflows/understand-executions/debug-executions.md): copy data from a previous execution into your current workflow to debug it.
* [Customize executions data](/build/understand-workflows/understand-executions/customize-executions-data.md): add custom data to your workflow executions using the Code node.
* [Stream real-time responses](/build/understand-workflows/understand-executions/stream-real-time-responses.md): send data back to users as an AI Agent node generates it.
* [Dirty nodes](/build/understand-workflows/understand-executions/understand-dirty-nodes.md): what dirty nodes are and how they affect workflow execution.

## Execution modes <a href="#execution-modes" id="execution-modes"></a>

There are two execution modes:

* **Manual:** Run workflows manually by clicking **Execute Workflow**. Unpublish workflows while testing through manual runs.
* **Production:** Production workflows run automatically. Publish a version of the workflow to put it into production.

## How executions count towards quotas: <a href="#how-executions-count-towards-quotas" id="how-executions-count-towards-quotas"></a>

[Paid plans](https://n8n.io/pricing/), whether cloud or self-hosted, have an execution limit quota. Only production executions count towards this quota. These are executions started automatically by triggers, schedules, or polling. This distinction applies regardless of the instance environment, such as development or production.

### Execution count by trigger type <a href="#execution-count-by-trigger-type" id="execution-count-by-trigger-type"></a>

The way executions are counted depends on the type of trigger node used:

* **Schedule Trigger nodes:** Count one execution every time the node fires, regardless of outcome.
* **Polling nodes (like Google Drive Trigger):** Count one execution only when new data is found. Polls that return no results don't count as an execution.
* **Webhook Trigger nodes:** Count one execution for every inbound request that activates the trigger. This includes requests with an empty body (such as `{}`). Malformed requests that fail before the workflow starts don't count as an execution.

### Triggers and runs that don't count <a href="#triggers-and-runs-that-dont-count" id="triggers-and-runs-that-dont-count"></a>

The following don't count towards your execution quota:

* **Manual executions:** Running a workflow from the editor while building or testing.
* **Sub-workflow executions:** When a workflow calls another workflow with the Execute Sub-workflow node, only the parent (top-level) execution counts.
* **Error workflow executions:** Runs of a workflow set as an [error workflow](/build/flow-logic/handle-errors-gracefully.md).
* **Polls that return no data:** A polling trigger only counts when it finds new data.
* **Malformed or rejected requests:** Webhook requests that fail before the workflow starts.

## Execution lists <a href="#execution-lists" id="execution-lists"></a>

n8n provides two execution lists:

* [Workflow-level executions](/build/understand-workflows/understand-executions/view-executions-for-a-single-workflow.md): this execution list shows the executions for a single workflow.
* [All executions](/build/understand-workflows/understand-executions/view-all-executions.md): this list shows all executions for all your workflows.

n8n supports [adding custom data to executions](/build/understand-workflows/understand-executions/customize-executions-data.md).

## Execution data redaction <a href="#execution-data-redaction" id="execution-data-redaction"></a>

You can redact execution data to protect sensitive information. Redaction hides the input and output data of workflow executions while preserving execution metadata like status, timing, and node names. Refer to [Execution data redaction](/deploy/host-n8n/configure-n8n/security/redact-execution-data.md) for details.

## Related resources

* [Understand workflows](/build/understand-workflows.md)
* [Create and run workflows](/build/understand-workflows/create-and-run-workflows.md)
* [Save and publish workflows](/build/understand-workflows/save-and-publish-workflows.md)
* [Create and edit credentials](/build/understand-workflows/create-and-edit-credentials.md)
* [Use Gateway credits](/build/understand-workflows/use-gateway-credits.md)
* [Workflow components](/build/understand-workflows/workflow-components.md)
