OOM killer in dmesg troubleshooting
Find OOM victims with human timestamps; -T avoids unreadable kernel ticks
dmesg -T | grep -iE 'killed process|out of memory' | tail
more troubleshooting
all 32 commands →
OOM score of process
cat /proc/<pid>/oom_score /proc/<pid>/oom_score_adj
cgroup v2 OOM events
cat /sys/fs/cgroup/<name>/memory.events | grep -E 'oom|max'
Deleted files holding disk
lsof +L1 | sort -k7 -rn | head
Disk I/O latency saturation
iostat -x 1 | awk '$1!~/^$/{print $1, "util="$NF, "await="$(NF-2)}'
Per-process block I/O top
biotop-bpfcc -C 5 1