Run details
Select a workflow run from the Runs list to open a run details page.

The top of the page contains basic run details and a progress overview for an at-a-glance view of the run's status:
- View and copy the run ID, pipeline name and repository, pipeline work directory, compute environment, and launch date.
- Select the star icon to favorite the run and find it more easily via a filter view in the runs list later.
- Use the options menu to apply labels, relaunch, resume, or delete the run, save the run as a new pipeline, or publish a new pipeline version (if the run was launched from a draft version).
Select the tabs below the workflow run progress bar to view further run details:
- Tasks: View the status and progress of pipeline tasks and processes, including extensive task details.
- Logs: View and download the pipeline run's execution logs.
- Metrics: View resource metrics for the run.
- Configuration: View Nextflow configuration files and the resolved configuration used for the run.
- Datasets: View datasets used as input for the run, if any.
- Reports: View reports for the run, if any were configured.
- Containers: View the details of containers used in the run, if any.
- Run Info: View details about the run, infrastructure, and executor.
- Tasks
- Logs
- Metrics
- Configuration
- Datasets
- Reports
- Containers
- Run Info

The cards at the top of the Tasks tab provide 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. See Cache and resume.
- Succeeded: The task completed successfully.
- Failed: The task failed.
- Aborted: The task was submitted, but the run was cancelled or failed before the task could begin.
Processes
The Processes panel displays the status of each process in a pipeline run. In Nextflow, a process is an individual step in a pipeline, while a task is a particular invocation of a process for given input data. In the panel, each process is shown with a progress bar indicating how many tasks have been completed for that process.
The progress bar is color-coded based on task status (created, submitted, completed, failed).
Select a process to navigate to the Tasks panel and filter the table contents by the selected process.
Tasks
The Tasks panel shows all the tasks that were executed in the run, including the following task details:
| Label | Description |
|---|---|
| task_id | Unique identifier for the task. |
| process | Process name. |
| tag | User-defined label or tag associated with the task. |
| hash | Nextflow task hash value. |
| status | Task execution status (e.g., COMPLETED, FAILED, RUNNING). |
| attempt | Number of execution attempts for this task (for retry logic). |
| exit | Task exit code. |
| container | Container image used to execute the task. |
| native_id | Native job ID assigned by the executor (e.g., cluster job ID). |
| submit | Timestamp when the task was submitted for execution. |
| duration | Total execution time for the task. |
| realtime | CPU wall time the task actually ran. |
| % cpu | Percentage of CPU utilization during task execution. |
| % mem | Percentage of memory utilization during task execution. |
| peak_rss | Peak resident set size (physical memory usage). |
| peak_vmem | Peak virtual memory usage. |
| rchar | Number of characters read from storage. |
| wchar | Number of characters written to storage. |
| vol_ctxt | Number of voluntary context switches. |
| inv_ctxt | Number of involuntary context switches. |
Use the search bar to filter tasks with substrings in the table columns such as process, tag, hash, and status. For example, if you enter succeeded in the Search task field, the table displays only tasks that succeeded.
Task details

Select a task in the task table to open the Task details dialog. The dialog has four tabs: About, Execution log, Data Explorer, and Container.
About
-
Name: Process name and tag.
-
Command: Task script, defined in the pipeline process.
-
Status: Exit code, task status, attempts.
-
Work directory: Directory where the task was executed.
-
Environment: Environment variables supplied to the task.
-
Execution time: Metrics for task submission, start, and completion time:
Label Description submit Task submission timestamp. start Task execution timestamp. complete Task completion timestamp. duration Time elapsed from task submission to completion, including scheduling time. realtime Task script execution time. -
Resources requested: Metrics for the resources requested by the task:
Label Description container Container image name used to execute the task. queue The queue that the executor used to run the process. cpus Number of CPUs requested for task execution. memory Memory requested for task execution. disk Disk space requested for task executiuon. time Time requested for task execution. executor The Nextflow executor used for this task. machineType The virtual machine type used for this task. cloudZone The cloud zone (region) where the task was executed. priceModel The price model used to calculate the task computation cost. cost The estimated cost to compute this task. -
Resources used: Metrics for the actual resources used by the task:
Label Description pcpu Percentage of CPU used by the task. rss Real memory (resident set) size of the task. peakRss Peak of real memory used. vmem Virtual memory size of the task. peakVmem Peak of virtual memory used. rchar Number of bytes the task read, using any read-like system call from files, pipes, tty, etc. wchar Number of bytes the task wrote, using any write-like system call. readBytes Number of bytes the task read directly from disk. writeBytes Number of bytes the task originally dirtied in the page-cache (assuming they will go to disk later). syscr Number of read-like system call invocations that the task performed. syscw Number of write-like system call invocations that the task performed. volCtxt Number of voluntary context switches. invCtxt Number of involuntary context switches.
Execution log
The Execution log tab provides a real-time log of the selected task's execution. Task execution and other logs (such as stdout and stderr) are available for download if they are still available in your compute environment.
Data Explorer
If the pipeline work directory is in cloud storage, this tab shows a Data Explorer view of the task's work directory location with the files associated with the task.
Container
This tab contains the image and build details of the container used to execute the task:
| Label | Description |
|---|---|
| Target image | The container image used to execute the workflow task. |
| Source image | The container image specified in the workflow configuration, if available. |
| Request ID | The unique request ID associated with the container. |
| Request time | The timestamp when the container request was made. |
| Build ID | The unique build ID assigned when the container was provisioned. |
| Mirror ID | The unique mirror ID assigned when the container was copied between repositories. |
| Scan ID | The unique scan ID from the vulnerability security scan of the container. |
| Cached | Indicates whether the container was previously built in an earlier request. |
| Freeze | Indicates whether the container was provisioned for persistent storage using Wave freeze mode. |
The Logs tab contains a window with the Nextflow execution log console output. Select Download log files to download:
- Nextflow console output, in TXT format.
- Nextflow log file, in LOG format.
- Execution timeline graph, in HTML format.
