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

# Overview

> Monitor all workflow executions through Latch Console with comprehensive visibility into execution status, logs, inputs/outputs, and provenance tracking.

<Info>This page provides a top-down overview of the Workflows product tab in Latch Console. It is useful for understanding what the tabs mean and how to navigate to them.</Info>

First, navigate to the Workflows product tab on Latch Console by clicking on the icon on the left sidebar.

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/workflow-product-tab.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=c502e6a381bd9e04f94829a93f80d466" height="100" width="100" data-path="workflows/sdk/assets/console/workflow-product-tab.png" />

There are three tabs for Workflows in the Latch Console:

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/workflow-overview.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=1864ff7b78b3f0faeb8e1a93d46a7b2d" width="250" data-path="workflows/sdk/assets/console/workflow-overview.png" />

1. **Workflows**: Include private and public workflows
2. **Executions**: Include all executions that have been launched for all workflows in the current workspace
3. **Automations**: Include all automations that have been created in the current workspace

# Workflows

<Card horizontal title="Go to Workflows Tab" icon="person-biking" href="https://console.latch.bio/workflows">
  Include private workflows within a workspace and all public workflows.
</Card>

### My Workflows

* Shows all workflows that have been uploaded to your workspace, or added from the All Workflows tab.
* For developers, any workflow you have registered with the `latch register` command will show up here.

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/my-workflows.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=db88a8d00d2d34247a2499852f7a0091" width="1296" height="512" data-path="workflows/sdk/assets/console/my-workflows.png" />

### All Workflows

* Shows all publicly available workflows.
* Workflows with the "Verified" tag have been curated and battle-tested by the Latch engineering team. Community-built workflows are not actively vetted so their quality may vary.

<img src="https://mintcdn.com/latchbio/rAgK9Jh7PMGtmcOA/workflows/sdk/assets/console/all-workflows.png?fit=max&auto=format&n=rAgK9Jh7PMGtmcOA&q=85&s=a3ee27960154e6f32ffae422d8c81580" width="1259" height="349" data-path="workflows/sdk/assets/console/all-workflows.png" />

### For a specific workflow

When you double-click on a specific workflow in "My Workflows" or "All Workflows", you'll be taken to the workflow's dedicated page, which contains:

* **About page**: Where the workflow author includes a description of the workflow, and any other relevant information. (For developers, learn how to customize the About page [here](/workflows/sdk/ui/latch-metadata)).

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/workflow-about.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=5361f953a5cdd61d6b2eec41847e5551" width="1289" height="654" data-path="workflows/sdk/assets/console/workflow-about.png" />

* **Parameters page**: Where you can fill out parameters and launch the workflow. For developers, learn how to customize the Parameters page [here](/workflows/sdk/ui/latch-metadata).

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/workflow-params.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=215b0115ec8d0b998814205fc29c211b" width="1288" height="952" data-path="workflows/sdk/assets/console/workflow-params.png" />

* **Graph page**: A visual representation of the workflow's directed acyclic graph (DAG). When the workflow is launched, the DAG will be populated with the workflow's task logs.

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/workflow-graph.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=784bf8765baeab835d144d3e9d3b0bc2" width="1279" height="396" data-path="workflows/sdk/assets/console/workflow-graph.png" />

* **Executions page**: All past executions that have been launched for this workflow. You can filter by workflow version, status, and who it was run by.

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/workflow-executions.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=30ba17ea93988abe00de7bcc62033670" width="1279" height="491" data-path="workflows/sdk/assets/console/workflow-executions.png" />

* **(Optional) Development page**: If you are the developer who registered the workflow, you will also see a Development tab, which tracks all workflow versions, creation date, release status, and associated Git commit. Visit the [Development page](/workflows/sdk/console/versioning) to learn more.

<img src="https://mintcdn.com/latchbio/uN1BKX4g3v1ZQv8l/images/workflows/nextflow/development-tab.png?fit=max&auto=format&n=uN1BKX4g3v1ZQv8l&q=85&s=a497b2cf0a330248c081391a00fb9ab3" width="1720" height="1050" data-path="images/workflows/nextflow/development-tab.png" />

# Executions

<Card horizontal title="Go to Executions Tab" icon="list" href="https://console.latch.bio/executions">
  Show all executions that have been launched for all workflows in the current workspace.
</Card>

### For a specific execution

When you double click on a specific execution, you will see:

* **Inputs page**: The inputs that were used to launch the workflow.

<img src="https://mintcdn.com/latchbio/rAgK9Jh7PMGtmcOA/workflows/sdk/assets/console/exec-input.png?fit=max&auto=format&n=rAgK9Jh7PMGtmcOA&q=85&s=8270be61e2cb52af7f51d1d20984b8bf" width="1286" height="687" data-path="workflows/sdk/assets/console/exec-input.png" />

* **Results page**: The outputs that were generated by the workflow. (For developers: You can customize this page to highlight specific files you want to show scientists. Visit docuemntation [here](/workflows/sdk/ui/results))

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/exec-results.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=ac1115f1588b6bc3f8f396f6b6345dd7" width="1281" height="416" data-path="workflows/sdk/assets/console/exec-results.png" />

* **Graph and Logs**: Statuses and logs for all processes that were run as part of the workflow.

<img src="https://mintcdn.com/latchbio/rAgK9Jh7PMGtmcOA/workflows/sdk/assets/console/exec-logs.png?fit=max&auto=format&n=rAgK9Jh7PMGtmcOA&q=85&s=da594b3394c168f658f5ce23788708e8" width="1289" height="911" data-path="workflows/sdk/assets/console/exec-logs.png" />

* **Messages**: Any messages that were generated by the workflow (For developers: You can customize this page to highlight specific messages you want to show scientists. Visit documentation [here](/workflows/sdk/ui/messages))

<img src="https://mintcdn.com/latchbio/ZwZDReBUjjeLkwgH/workflows/sdk/assets/ui/messages-comprehensive.png?fit=max&auto=format&n=ZwZDReBUjjeLkwgH&q=85&s=8fe7bdf2c73ac322d982512d3c755e27" width="2580" height="916" data-path="workflows/sdk/assets/ui/messages-comprehensive.png" />

* **Usage report**: A summary of the resources that were used to run the workflow. (For developers: Learn more how to use the usage report to optimize your workflow here [here](/workflows/sdk/console/usage-report))

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/exec-usage-report.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=f39747e63ffe7896b25f297e4005787b" width="1269" height="598" data-path="workflows/sdk/assets/console/exec-usage-report.png" />

* **Sidebar**: For every execution, on the sidebar, you can see duration, cost, who launched the workflow, inputs and outputs.

<img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/execution-sidebar.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=a3992c47c39891de9d25190c20239f9b" width="1612" height="560" data-path="workflows/sdk/assets/console/execution-sidebar.png" />

* **Execution controls**: On the same sidebar, and buttons to abort, relaunch, and relaunch from failed task.
  * *Abort*: Button is available if the workflow is still running and you want to stop it.

    <img src="https://mintcdn.com/latchbio/rAgK9Jh7PMGtmcOA/workflows/sdk/assets/console/abort.png?fit=max&auto=format&n=rAgK9Jh7PMGtmcOA&q=85&s=a4d7d701dad4b9b571528e8758cfa09e" width="200" data-path="workflows/sdk/assets/console/abort.png" />

  * *Relaunch*: Button is available if the workflow has completed and you want to run it again.

    <img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/relaunch-succeeded.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=d6695ae8459b8e7ae2861eed47912625" width="200" data-path="workflows/sdk/assets/console/relaunch-succeeded.png" />

  * *Relaunch with a dropdown for "Relaunch from failed task"*: Button is available if the workflow has completed but failed and you want to run it again from the failed task without rerunning successful upstream tasks.

    <img src="https://mintcdn.com/latchbio/Oe88Y5wn1PaSAPqA/workflows/sdk/assets/console/relaunch-from-failed.png?fit=max&auto=format&n=Oe88Y5wn1PaSAPqA&q=85&s=2e7ba4878ca7e36bf0f6e2b547e66ce4" width="200" data-path="workflows/sdk/assets/console/relaunch-from-failed.png" />

# Automations

<Card horizontal title="Go to Automations Tab" icon="robot" href="https://console.latch.bio/automations">
  Place to create and manage automations.
</Card>

* Visit [Automations page](/workflows/sdk/automation) to learn how to create and manage automations.
