Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi All,
im trying to find a way to access a data Pipeline by run Id with the releate information about this run.
via a Data Pipeline or API?
Hope someone can point me in the right direction,
Kind regards,
Boy Drijvers
Solved! Go to Solution.
Hi @BoyDrijvers ,
You can access Pipeline Run Information via Azure Data Factory UI.
Navigate to your Azure Data Factory instance. In the left pane, select Monitor. Here, you'll find a list of pipeline runs. You can filter this list by the pipeline run ID to find the specific run you're interested in. Once you find the run, click on it to view detailed information, including activity runs, input/output, and any errors if the run failed.
You can also access Pipeline Run Information via Azure Data Factory REST API.
To get details about a specific pipeline run, you can use the Pipeline Runs - Get operation. You'll need to provide the resource group name, factory name, and the pipeline run ID. Here's an example of how to make this call:
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/pipelineruns/{runId}?api-version=2018-06-01
This will return detailed information about the pipeline run, including status, activity details, and more.
For more details on monitoring pipeline runs via the Azure Data Factory UI, you can refer to the Monitor Pipeline Runs documentation.
And to learn more about using the Azure Data Factory REST API for accessing pipeline run details, you can refer to this document.
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @BoyDrijvers ,
You can access Pipeline Run Information via Azure Data Factory UI.
Navigate to your Azure Data Factory instance. In the left pane, select Monitor. Here, you'll find a list of pipeline runs. You can filter this list by the pipeline run ID to find the specific run you're interested in. Once you find the run, click on it to view detailed information, including activity runs, input/output, and any errors if the run failed.
You can also access Pipeline Run Information via Azure Data Factory REST API.
To get details about a specific pipeline run, you can use the Pipeline Runs - Get operation. You'll need to provide the resource group name, factory name, and the pipeline run ID. Here's an example of how to make this call:
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/pipelineruns/{runId}?api-version=2018-06-01
This will return detailed information about the pipeline run, including status, activity details, and more.
For more details on monitoring pipeline runs via the Azure Data Factory UI, you can refer to the Monitor Pipeline Runs documentation.
And to learn more about using the Azure Data Factory REST API for accessing pipeline run details, you can refer to this document.
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
for example: i want the response you get when you export To CSV. but in automatic way.
Check out the October 2024 Fabric update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.