Investigate manticore zombie processes and swap usage #30
Labels
No Label
ai-changes-requested
ai-failed
ai-pr-opened
ai-reviewed
ai-reviewing
ai-working
infra-audit
monitoring
operations
proxmox
script
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cal/claude-home#30
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Context
The audit found 10 zombie processes and 978 MB swap usage on manticore (ubuntu-manticore, 32 GB RAM physical server). While neither is critical, the combination suggests potential past memory pressure events.
Investigation Tasks
ps aux | awk '$8=="Z"'— what parent process is not reaping them?dmesg | grep -i "oom-kill"andjournalctl -k | grep -i oomsmem -rs swap | head -20orfor pid in /proc/[0-9]*/status; do awk '/VmSwap/{if($2>0) print FILENAME,$0}' $pid; done 2>/dev/null | sort -k3 -rn | head -20Potential Actions
swapoff -a && swapon -aduring next maintenanceLabels
infra-audit,operations