Hot thread live view troubleshooting
Live per-thread view; convert hot TID to hex (printf %x) to match jstack nid
top -H -p <pid>
more troubleshooting
all 32 commands →
Per-core CPU saturation
mpstat -P ALL 1
Run-queue vs cores
vmstat 1 5 | awk 'NR>2{print "runq="$1" blocked="$2}'; nproc
Process thread count
ps -o nlwp= -p <pid>; ps -eLf | wc -l
RSS leak over time
while sleep 5; do ps -o rss= -p <pid> | awk '{print strftime("%T"),$1/1024"MB"}'; done
Fast memory rollup
cat /proc/<pid>/smaps_rollup