| MAX_GB=145 | |
| while true; do | |
| USED=$(df /workspace | tail -1 | awk '{print int($3/1048576)}') | |
| if [ "$USED" -ge "$MAX_GB" ]; then | |
| echo "[WATCHDOG] Disk at ${USED}GB - STOPPING SCRAPER" | |
| pkill -f turbo_crawl | |
| exit 0 | |
| fi | |
| sleep 60 | |
| done | |
| MAX_GB=145 | |
| while true; do | |
| USED=$(df /workspace | tail -1 | awk '{print int($3/1048576)}') | |
| if [ "$USED" -ge "$MAX_GB" ]; then | |
| echo "[WATCHDOG] Disk at ${USED}GB - STOPPING SCRAPER" | |
| pkill -f turbo_crawl | |
| exit 0 | |
| fi | |
| sleep 60 | |
| done | |