This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-08-20 00:45:43 +02:00

15 lines
312 B
Bash

#!/bin/bash
echo "=== ulimit ==="
ulimit -l
echo "=== Process Memory ==="
PID=$(pgrep -f "python.*main.py" | head -1)
if [ -n "$PID" ]; then
grep -i -E 'VmSize|VmRSS|VmLck|VmSwap' /proc/$PID/status
else
echo "ComfyUI not running"
fi
echo "=== System Memory ==="
free -m
echo "=== Swap ==="
swapon --show