| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2272 人关注过本帖
标题:Linux vmstat 命令参数详解
只看楼主 加入收藏
堕落黑天使
Rank: 1
等 级:新手上路
帖 子:84
专家分:0
注 册:2016-12-22
结帖率:0
收藏
 问题点数:0 回复次数:0 
Linux vmstat 命令参数详解
Linux vmstat 命令参数详解

vmstat  n m  :每隔n秒钟刷新,抓取m次数后退出。

[Oracle@linuxidc properties]$ vmstat 2 3
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 0  0     96 655968 278912 2117884    0    0     0    10    1    1 18  2 80  0  0
 1  0     96 655968 278912 2117884    0    0     0     0 1011  694  0  0 100  0  0
 0  0     96 655968 278912 2117884    0    0     0    34 1013  338  0  0 100  0  0

FIELD DESCRIPTION FOR VM MODE
   Procs
       r: The number of processes waiting for run time.          处于运行队列中的内核线程数目(进程数)。
       b: The number of processes in uninterruptible sleep.  置于等待队列(等待资源、等待输入/输出)的内核线程数目。 处于block队列中不可中断的进程数

 Memory
       swpd: the amount of virtual memory used.                     可用的虚拟交换内存
       free: the amount of idle memory.                                      空闲内存
       buff: the amount of memory used as buffers.                已用缓冲数目
       cache: the amount of memory used as cache.             已用缓存数目
       inact: the amount of inactive memory. (-a option)         不活动的内存数
       active: the amount of active memory. (-a option)          活动内存数

  Swap
       si: Amount of memory swapped in from disk (/s).         从磁盘到内存的交换页数目 (单位/S)
       so: Amount of memory swapped to disk (/s).                 从交换内存到磁盘的交换页数目(单位/S)

   IO
       bi: Blocks received from a block device (blocks/s).      接收到块设备的块数(块/秒)
       bo: Blocks sent to a block device (blocks/s).                 发送到块设备的块数(块/秒)

   System
       in: The number of interrupts per second, including the clock.        每秒中断数,包括时钟中断
       cs: The number of context switches per second.                              每秒上下文切换数

   CPU
       These are percentages of total CPU time.
       us: Time spent running non-kernel code. (user time, including nice time)   用户时间                 处于用户模式的时间百分比
       sy: Time spent running kernel code. (system time)                                           系统时间                 处于内核模式的时间百分比
       id: Time spent idle. Prior to Linux 2.5.41, this includes IO-wait time.              CPU空闲时间        空闲时间百分比
       wa: Time spent waiting for IO. Prior to Linux 2.5.41, included in idle.            CPU 空闲时间,在此期间系统有未完成的磁盘/NFS I/O 请求
       st: Time stolen from a virtual machine. Prior to Linux 2.6.11, unknown.         来自于虚拟机偷取的CPU所占的百分比   (这个不会翻译...)


FIELD DESCRIPTION FOR DISK MODE
   Reads
       total: Total reads completed successfully
       merged: grouped reads (resulting in one I/O)
       sectors: Sectors read successfully
       ms: milliseconds spent reading

   Writes
       total: Total writes completed successfully
       merged: grouped writes (resulting in one I/O)
       sectors: Sectors written successfully
       ms: milliseconds spent writing

   IO
       cur: I/O in progress

       s: seconds spent for I/O
----------------------------------------------------------------------------------------------------------
NOTICE:
 
  procs r: 运行的进程比较多,系统很繁忙
  bi/bo: 磁盘写的数据量稍大,如果是大文件的写,10M以内基本不用担心,如果是小文件写2M以内基本正常
  cpu us: 持续大于50%,服务高峰期可以接受, 如果长期大于50 ,可以考虑优化
    cpu sy: 现实内核进程所占的百分比,这里us + sy的参考值为80%,如果us+sy 大于 80%说明可能存在CPU不足。
  cpu wa: 列显示了IO等待所占用的CPU时间的百分比。这里wa的参考值为30%,如果wa超过30%,说明IO等待严重,这可能是磁盘大量随机访问造成的, 也可能磁盘或者磁盘访问控制器的带宽瓶颈造成的(主要是块操作)。
cpu id:  CPU 空闲时所占百分比  平常持续小于50,服务高峰期可以接受。

更多内容:http://www.网站建设
搜索更多相关主题的帖子: memory system Linux 
2017-02-16 17:40
快速回复:Linux vmstat 命令参数详解
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014715 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved