| name | system-info |
| description | Monitor system resources including CPU, memory, disk, and network usage. |
| metadata | {"openclaw":{"emoji":"🖥️"}} |
System Info
Monitor system resources within the Docker container.
CPU and Memory
top -bn1 | head -20
free -h
nproc
cat /proc/cpuinfo | grep "model name" | head -1
Disk
df -h
du -sh /data/*
Network
ip addr show
ss -tuln
Tips for AI Agents
- Use
top -bn1 for non-interactive snapshot of processes.
- Monitor memory with
free -h for human-readable output.
- Check disk space before large file operations.