centos perf kvm使用

1、使用如下命令,找出运行的虚拟机及其进程号,假设为此处有虚拟机进程号为3356:
ps -aux | grep qemu-kvm

2、在/tmp下建目录/guestmount/3356
mkdir /tmp/guestmount/3356

3、安装perf,sshfs :
sudo yum install perf sshfs

4、挂载,114.212.*.*为虚拟机地址:
sudo sshfs -o allow_other,direct_io 114.212.*.*:/ /tmp/guestmount/3356

5、记录,生成perf.data.kvm文件:
perf kvm --host --guest --guestmount=/tmp/guestmount record -a

6、分析:
perf kvm --guest --guestmount=/tmp/guestmount report -i /tmp/perf.data.kvm

perf kvm --host --guestmount=/tmp/guestmount report -i /tmp/perf.data.kvm

设置访问控制相关,需要root用户操作:
echo 0 > /proc/sys/kernel/kptr_restrict
echo -1 > /proc/sys/kernel/perf_event_paranoid

运行截图:
centos perf kvm使用_第1张图片

KVM虚拟机可能不支持cache-misses事件,所有的事件可以通过perf list来查看。
在物理机中测试cache-misses事件的例子(sleep 1程序):

perf record -e cache-misses sleep
perf report -i perf.data

一下为结果截图,由此可见不能在KVM VM中记录cache-misses事件:
这里写图片描述

这里写图片描述

参考地址:
http://blog.csdn.net/x_i_y_u_e/article/details/48292147
https://www.ibm.com/developerworks/community/blogs/IBMzOS/entry/20141104?lang=en

你可能感兴趣的:(centos perf kvm使用)