clearml-docs/docs/webapp/pipelines/webapp_pipeline_viewing.md

69 lines
3.0 KiB
Markdown
Raw Normal View History

2022-03-06 15:09:57 +00:00
---
title: Pipeline Run Details
---
2023-10-01 07:31:48 +00:00
The run details panel shows the pipeline's structure and the execution status of every step, as well as the run's
2022-03-06 15:09:57 +00:00
configuration parameters and output.
![Pipeline structure](../../img/webapp_pipeline_DAG.png)
Each step shows:
![Pipeline step info](../../img/webapp_pipeline_node.png)
* Step name
* Step status
* Step execution time
* Step log button - Hover over the step and click <img src="/docs/latest/icons/ico-console.svg" alt="console" className="icon size-md space-sm" />
2023-10-01 07:31:48 +00:00
to view the step's [details panel](#run-and-step-details-panel)
2022-03-06 15:09:57 +00:00
2023-10-09 12:48:19 +00:00
While the pipeline is running, the steps' details and colors are updated.
2022-03-06 15:09:57 +00:00
## Run and Step Details
### Run and Step Info
On the right side of the pipeline run panel, view the **RUN INFO** which shows:
* Run Parameters
* Reported Metrics
* Produced Artifacts
* Output Models
![Run info](../../img/webapp_pipeline_run_info.png)
2023-10-09 12:48:19 +00:00
To view a run's complete information, click **Full details**, which will open the pipeline's controller [task page](../webapp_exp_track_visual.md).
View each list's complete details in the pipeline task's corresponding tabs:
2022-03-06 15:09:57 +00:00
* **PARAMETERS** list > **CONFIGURATION** tab
* **METRICS** list > **SCALARS** tab
* **ARTIFACTS** and **MODELS** lists > **ARTIFACTS** tab
![Pipeline task info](../../img/webapp_pipeline_task_info.png)
2023-10-09 12:48:19 +00:00
To view a specific step's information, click the step on the execution graph, and the info panel displays its **STEP INFO**.
The panel displays the step's name, task type, and status, as well as its parameters, metrics, artifacts, and models.
2022-03-06 15:09:57 +00:00
![Step info](../../img/webapp_pipeline_step_info.png)
2023-10-09 12:48:19 +00:00
To return to viewing the run's information, click the pipeline graph, outside any of the steps.
2022-03-06 15:09:57 +00:00
2023-05-17 08:38:28 +00:00
### Run and Step Details Panel
2022-03-06 15:09:57 +00:00
2023-10-09 12:48:19 +00:00
Click on **DETAILS** on the top left of the info panel to view the pipeline controller's details panel. To view a step's
2023-05-17 08:38:28 +00:00
details panel, click **DETAILS** and then click on a step node, or hover over a step node and click <img src="/docs/latest/icons/ico-console.svg" alt="details" className="icon size-md space-sm" />.
2022-03-06 15:09:57 +00:00
2023-05-17 08:38:28 +00:00
The details panel includes three tabs:
* **Preview** - View debug samples and plots attached to the pipeline controller or step
2022-03-06 15:09:57 +00:00
2023-05-17 08:38:28 +00:00
![preview](../../img/webapp_pipeline_step_debug.png)
2022-03-28 09:16:38 +00:00
2023-05-17 08:38:28 +00:00
* **Console** - The console log for the pipeline controller or steps: contains everything printed to stdout and stderr.
![console](../../img/webapp_pipeline_step_console.png)
* **Code** - For pipeline steps generated from functions using either [`PipelineController.add_function_step`](../../references/sdk/automation_controller_pipelinecontroller.md#add_function_step)
2023-05-02 12:35:33 +00:00
or [`PipelineDecorator.component`](../../references/sdk/automation_controller_pipelinecontroller.md#pipelinedecoratorcomponent),
2023-10-09 12:48:19 +00:00
you can view the selected step's code.
2023-05-17 08:38:28 +00:00
![code](../../img/webapp_pipeline_step_code.png)
2022-03-06 15:09:57 +00:00
2023-05-17 08:38:28 +00:00
Click <img src="/docs/latest/icons/ico-max-panel.svg" alt="Expand" className="icon size-md space-sm" /> on the details panel header to view the panel in full screen.