一、IO监控
查看进程级别的io占用
-
pidstat -d 1 2
image.png -
测试磁盘读写IO
$ # bs=block-size count=number-of-blocks oflag=dsync
$ dd if=/dev/zero of=/tmp/output.img bs=8k count=256k
262144+0 records in
262144+0 records out
2147483648 bytes (2.1 GB) copied, 1.58114 s, 1.4 GB/s
$ rm /tmp/output.img
二、进程信息查看
- 查看进程下面的线程数量
ps hH p <pid>
ls /proc/<pid>/task
top -H -p <pid>
网友评论