Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I want to get the Microsoft Fabric pipeline run time in to the Fabric Warehouse Table.
Solved! Go to Solution.
Please try custom logging by adding some of the DB objects(like tables procedures) to add the data from pipeline. You can use SP activities at the beginning and end of the pipelines and also make use of system variables like runid, pipelinename..etc.
Please try custom logging by adding some of the DB objects(like tables procedures) to add the data from pipeline. You can use SP activities at the beginning and end of the pipelines and also make use of system variables like runid, pipelinename..etc.
Another option is to use the MS Fabric API to retrieve the start and end time of a job and calculate the run time. You could look into this API: https://learn.microsoft.com/en-us/rest/api/fabric/core/job-scheduler/get-item-job-instance?tabs=HTTP
Run time = Last refresh date and time I want.
have you try to use a store procedure (custom self logging what you want, pipeline name, start run timestamp, etc.) as the first step of your pipeline? There may be a few seconds delay for the real pipeline run start time and the time of executing the SP. Not sure if that could fit your needs 100%.
Run time = Last refresh date and time I want.