I'm running a pipeline in azure data factory, and I'm using a custom cell to run a azure batch activity.
The azure batch job I run is really big, and I would like to monitor which stage I'm in that job. On a remote VM, I typically do this using the logging
module in python
.
I am able to get the status of the jobs (i.e., all the logging information) when it has finished, but I would like to obtain it when running the job.
How do I do this?