【linux实战2】测试工程师实战课程之三剑实战linux性能统计分析

1.使用三剑客提取指定pid的进程的cpu数据
top -p20 -n 1 |awk ‘NR==8{print $10,$11}’
image
2、 使用三剑客提取指定pid的进程的cpu数据,打印20次,间隔1s(for循环来做)
for ((i=0;i<20;i++)) ; do top -p20 -n 1 |awk ‘NR==8{print $10,$11}’;done
image

1.使用三剑客提取指定pid的进程的cpu数据
image
2.使用三剑客提取指定pid的进程的cpu数据,打印20次,间隔1s(for循环来做)
image

1.使用三剑客提取指定pid的进程的cpu数据
top -p 23289 -n 1 | grep 23289 | awk ‘{print $10}’
image
2.使用三剑客提取指定pid的进程的cpu数据,打印20次,间隔1s(for循环来做)
for i in {1…20};do top -p 23289 -n 1 | grep 23289 | awk ‘{print $10}’;sleep 1;done
image

作业1.
使用三剑客提取指定pid的进程的cpu数据:

# 找出systemd的pid
$ ps -ef | grep '\b/systemd/\b' | awk '{print $3}' | uniq

# 提取cpu字段
$ top -n 1 -p 1 | grep systemd | awk '{print $10}'

作业2.
使用三剑客提取指定pid的进程的cpu数据,打印20次,间隔1s(for循环来做)

# 在作业1的基础上增加for循环
$ for i in {1..20};do top -n 1 -p 1 | grep systemd | awk '{print $10}';done

1.使用三剑客提取指定 pid 的进程的 cpu 数据

ps -ef | grep docker
top -p 16430 -n 1 | grep 16430| awk '{print $10}'

2.使用三剑客提取指定 pid 的进程的 cpu 数据,打印 20 次,间隔 1s( for 循环来做)

for i in {1..20}
do
    top -p 16430 -n 1 | grep 16430| awk '{print $10}'
    sleep 1
done

作业1:


作业2:

作业1:
image
作业2:
image

使用三剑客提取指定pid的进程的cpu数据
ps -ef | grep systemd


使用三剑客提取指定pid的进程的cpu数据,打印20次,间隔1s(for循环来做)

  1. 使用三剑客提取指定pid的进程的cpu数据
    top -p 8070 -n 1 | grep 8070 | awk ‘{print $10}’

  2. 使用三剑客提取指定pid进程的cpu数据,打印20次,间隔1s(for循环来做)
    for((i=0;i<20;i++)); do top -p 8070 -n 1 | grep 8070 | awk ‘{print $10}’;sleep 1s; done

查看火狐pid

 ps -ef | grep systemd
  1. 使用三剑客提取指定pid的进程的cpu数据
ps -ef | grep systemd

top -p 1 -n 1 | grep systemd | awk '{print $10}'

  1. 使用三剑客提取指定pid的进程的cpu数据,打印20次,间隔1s(for循环来做)
for i in {1..20};do top -p 1 -n 1 | grep systemd | awk '{print $10}';sleep 3s;done
 
for((i=0;i<20;i++));do top -p 1 -n 1 | grep systemd | awk '{print $10}';sleep 1s;done

  1. 使用三剑客提取指定pid的进程的cpu数据
    top -p 4971 -n 3 | grep mysqld | awk '{print $10}'
    image

  2. 使用三剑客提取指定pid的进程的cpu数据,打印20次,间隔1s(for循环来做)
    for i in {1..20};do top -n 1 -d 1 -p 4971|grep mysqld | awk '{print $11}';sleep 1;done
    image

1、使用三剑客提取指定pid的进程的cpu数据

ps -ef | grep systemd #先查出进程的pid
top -p 1 -n 1 | grep systemd | awk '{print $10}' #这里的grep systemd 是将头部信息过滤

2、使用三剑客提取指定pid的进程的cpu数据,打印20次,间隔1s(for循环来做)

for ((i=0;i<20;i++));do top -p 1 -n 1 | grep systemd | awk '{print $10}' ;sleep 1s;done;

1.使用三剑客提取指定pid的进程的cpu数据
firefox=ps -ef | grep firefox | awk '{if(NR==1)print $2}' #查找firefox的PID
image

2.使用三剑客提取指定pid的进程的cpu数据,打印20次,间隔1s(for循环来做)
for i in {1…10}; do top -p $firefox -n 1 | grep MainThread | awk ‘{print $10,$13}’;sleep 1s;done
image

作业
1.
ps -ef |grep tomcat9 |awk ‘{print $2}’ | sed -n ‘1p’
top -p 3265 -n 1 |grep java| awk ‘{print $10}’
2.
for ((i=1;i<21;i++));do top -p 3265 -n 1 |grep java|awk ‘{print $10}’; sleep 1s; done

作业1:


作业2: