mirror of
https://github.com/clearml/clearml-docs
synced 2025-01-31 22:48:40 +00:00
60 lines
2.2 KiB
Markdown
60 lines
2.2 KiB
Markdown
|
---
|
|||
|
title: Pipeline Run Details
|
|||
|
---
|
|||
|
|
|||
|
The run details panel shows the pipeline’s structure and the execution status of every step, as well as the run’s
|
|||
|
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" />
|
|||
|
to view the step’s [console log and code](#run-and-step-log)
|
|||
|
|
|||
|
While the pipeline is running, the steps’ details and colors are updated.
|
|||
|
|
|||
|
## 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)
|
|||
|
|
|||
|
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:
|
|||
|
* **PARAMETERS** list > **CONFIGURATION** tab
|
|||
|
* **METRICS** list > **SCALARS** tab
|
|||
|
* **ARTIFACTS** and **MODELS** lists > **ARTIFACTS** tab
|
|||
|
|
|||
|
![Pipeline task info](../../img/webapp_pipeline_task_info.png)
|
|||
|
|
|||
|
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.
|
|||
|
|
|||
|
![Step info](../../img/webapp_pipeline_step_info.png)
|
|||
|
|
|||
|
To return to viewing the run’s information, click the pipeline graph, outside any of the steps.
|
|||
|
|
|||
|
### Run and Step Log
|
|||
|
|
|||
|
Click on **DETAILS** on the top left of the info panel to view a run’s full console log. The log contains everything printed
|
|||
|
to stdout and stderr.
|
|||
|
|
|||
|
![Step console](../../img/webapp_pipeline_step_console.png)
|
|||
|
|
|||
|
To view a step’s console log, click **DETAILS** and then click on a step.
|
|||
|
|
|||
|
You can also view the selected step’s code. On the top right of the console panel, click **Console**, then click **Code**
|
|||
|
in the menu.
|
|||
|
|
|||
|
![Step code](../../img/webapp_pipeline_step_code.png)
|