码迷,mamicode.com
首页 > 其他好文 > 详细

性能测试分析_vmstat

时间:2017-10-22 11:01:50      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:数值   需要   ons   get   inactive   虚拟   time   io操作   比较   

 vmstat命令主要是对操作系统的虚拟内存、进程、IO读写、CPU活动等整体情况进行统计。

vmstat基本语法

命令使用格式:vmstat [options] [delay [count]]

选项

 -a, --active           active/inactive memory
 -f, --forks            number of forks since boot
 -m, --slabs            slabinfo
 -n, --one-header       do not redisplay header
 -s, --stats            event counter statistics
 -d, --disk             disk statistics
 -D, --disk-sum         summarize disk statistics
 -p, --partition <dev>  partition specific statistics
 -S, --unit <char>      define display unit
 -w, --wide             wide output
 -t, --timestamp        show timestamp

 -h, --help     display this help and exit
 -V, --version  output version information and exit

使用实例

1、vmstat 1 2,每秒收集1次统计信息,总共收集2次。这是最常用的实例,不带选项。

$ vmstat 1 2
procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 1  0      0 142524 1499664 4028148    0    0    38    42    7    9  1  1 98  0  0
 0  0      0 141764 1499664 4028160    0    0     0     0 1123 2025  1  1 99  0  0

以上各列含义

procs:
  r 运行队列
  b 阻塞的进程
memory:
  swpd 虚拟内存使用量。如果大于0,表示机器物理内存不足。
  free 空闲物理内存
  buff 作为buff使用的内存
  cache 作为cache使用的内存
swap:
  si  每秒从磁盘读入虚拟内存的大小,如果这个值大于0,表示物理内存不够或者内存泄露了,要查找耗内存进程解决掉。
  so  每秒虚拟内存写入磁盘的大小,如果这个值大于0,同上。
  bi  块设备每秒接收的块数量,这里的块设备是指系统上所有的磁盘和其他块设备,默认块大小是1024byte
  bo  块设备每秒发送的块数量,bi和bo一般都要接近0,不然就是IO过于频繁,需要调整。
system:
  in 每秒CPU的中断次数,包括时间中断。
  cs 每秒上下文切换次数
cpu:
  us 用户CPU时间
  sy 系统CPU使用率,如果太高,表示系统调用时间长,例如是IO操作频繁。
  id CPU空闲率
  wt 等待IO CPU时间

分析时重点关注

r 最好不要超过cpu总数,长期大于的话需要重点关注
b 长期很高时需要注意
swpd 最好不要大于0,如果大于0,接着看si,so,如果为0或很低的话,没事
si,so 数值比较高,并且在不断变化时,说明内存不够了,内存中的数据频繁交换到交换分区中,这往往对系统性能影响极大
bi,bo 数值高表示io压力大

参考资料

  1、Linux 系统实时监控工具vmstat

性能测试分析_vmstat

标签:数值   需要   ons   get   inactive   虚拟   time   io操作   比较   

原文地址:http://www.cnblogs.com/linyfeng/p/7707843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!