The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Fabric update to learn about new features.