สิ่งนี้ควรทำในสิ่งที่คุณต้องการ ได้รับข้อมูลจาก/proc/$PID/statm
และพิมพ์ (จากman procfs
):
size total program size
(same as VmSize in /proc/[pid]/status)
resident resident set size
(same as VmRSS in /proc/[pid]/status)
share shared pages (from shared mappings)
data data + stack
บท:
#!/usr/bin/env bash
## Print header
echo -e "Size\tResid.\tShared\tData\t%"
while [ 1 ]; do
## Get the PID of the process name given as argument 1
pidno=`pgrep $1`
## If the process is running, print the memory usage
if [ -e /proc/$pidno/statm ]; then
## Get the memory info
m=`awk '{OFS="\t";print $1,$2,$3,$6}' /proc/$pidno/statm`
## Get the memory percentage
perc=`top -bd .10 -p $pidno -n 1 | grep $pidno | gawk '{print \$10}'`
## print the results
echo -e "$m\t$perc";
## If the process is not running
else
echo "$1 is not running";
fi
done
จากนั้นคุณสามารถเรียกใช้สคริปต์โดยให้ชื่อกระบวนการเป็นอินพุต ตัวอย่างเช่น:
$ memusage.sh firefox
Size Resid. Shared Data %
517193 261902 9546 400715 12.8
517193 261902 9546 400715 12.8
517193 261902 9546 400715 12.8
517193 262100 9546 400715 12.8
517193 262100 9546 400715 12.8
517193 262100 9546 400715 12.8
517209 261899 9546 400731 12.8
517209 261899 9546 400731 12.8
หมายเหตุ:
- นี่ถือว่ามีเพียงกระบวนการเดียวที่รันด้วยชื่อที่ระบุ
/proc/$PID/statm
) แล้วนอนหลับ 100ms และทำซ้ำ ทำไมคุณไม่ทิ้งการเชื่อมโยงของ PIDstatm
ไปเรื่อยcat
ๆ บางทีใช้ regex บางตัวเพื่อกรองค่าพิเศษ / ที่ไม่จำเป็นและทำ asleep 0.01
? ระบบปฏิบัติการบางระบบไม่อนุญาตให้ใช้sleep
ค่าวินาทีย่อยดังนั้นในกรณีนี้คุณต้องใช้เส้นทาง Python (และใช้time
ห้องสมุดในตัวของ Python แทนโหมดสลีปแทน)