How to Monitor
To monitor a script, run it with output redirection to the logs/ directory:
python scripts/your_script.py > logs/job_name.log 2>&1 &
The 2>&1 ensures errors are also captured.
The & runs it in the background.