Skip to content

Summary and status

General summary#

On the View Workflow Run page, the General panel displays top-level information about a pipeline run:

  • Unique workflow run ID
  • Workflow run name
  • Timestamp of pipeline start
  • Project revision and Git commit ID
  • Nextflow session ID
  • Username of the launcher
  • Work directory path
  • Container image
  • Executor
  • Compute environment details
  • Resource labels
  • Nextflow version

Hover over each item with the cursor to view a description. Hover over the compute environment to view more compute environment details.

Task status#

The Status panel provides a real-time status of all tasks in the pipeline run:

  • pending: The task has been created, but not yet submitted to an executor
  • submitted: The task has been submitted to an executor, but is not yet running
  • running: The task has been launched by an executor (the precise definition of "running" may vary for each executor)
  • cached: A previous (and valid) execution of the task was found and used instead of executing the task again
  • completed: The task completed successfully
  • failed: The task failed
Back to top