How can I get the value of the following in DataFactory:
- Last time the pipeline was triggered
- Current starting time of the triggered pipeline
How can I get the value of the following in DataFactory:
There is no easy way. As far as I know, you cannot do that with just data factory, I'd run an Azure Function to look for that using PowerShell or Python's sdk.
This one is easy, you can get it using:
"@trigger().startTime"
And that will give you the current starting time. Doc here: https://docs.microsoft.com/en-us/azure/data-factory/control-flow-system-variables
Hope this helped!
You could get some of this messages in Data Factory monitor/pipeline run page:
It include: last run time(triggered time) and DURACTION.
But for now, we can not export it.
Hope this helps.