How to get Data Factory logging information?

Viewed 9833

Does Microsoft has any documentation. I need complete information to a run pipeline, i.e

Start time, end time, pipeline job id, no of record inserted, deleted, update, error, etc

3 Answers

If you use Python, you can use Azure Python SDK to access the pipeline_runs and activity_runs metadata and write to a database table.

Related