Linux 查看系统负载

时间:2022-12-23 04:39:40

查看系统负


  • # 查看系统负载
  • 命令:uptime
  • :: up  :,   users,  load average: 0.00, 0.00, 0.00
    
    注:load average: 0.00, 0.00, 0.00

    测试


  • # 查看系统负载
  • 命令:w
  • :: up  :,   users,  load average: 0.00, 0.00, 0.00
    USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
    root tty1 - : : .15s .15s -bash
    root pts/ 192.168.1.150 : :02m .10s .10s -bash
    root pts/ 192.168.1.150 : .00s .01s .00s w
    root pts/ 192.168.1.150 : :39m .01s .01s -bash 注: load average: 0.00, 0.00, 0.00

    测试


  • # 当前每隔10分钟打印一次系统负载
  • 命令:sar –q –f /var/log/sa/sa*
  • 19时17分26秒   runq-sz  plist-sz   ldavg-   ldavg-  ldavg-
    19时17分44秒 0.00 0.02 0.00 ldavg- # 系统1分钟前负载
    ldavg- # 系统 5分钟前负载
    ldavg- # 系统 15分钟前负载

    测试


  • # 查看系统负载
  • 命令:top
  • # 查看CPU个数
  • 命令:top
  • 终端:1
  • Tasks:   total,    running,   sleeping,    stopped,    zombie
    Cpu(s): 0.0%us, 0.0%sy, 0.0%ni,100.0%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
    Mem: 508960k total, 475576k used, 33384k free, 14392k buffers
    Swap: 2064376k total, 141052k used, 1923324k free, 127476k cached 注:0.0%hi, 0.0%si, 0.0%st

    测试


  • # 查看CPU每十分钟刷新一次
  • 命令:sar
  • Linux 2.6.-.el6.i686 (localhost.localdomain)     2018年01月22日     _i686_    ( CPU)
    
    19时17分26秒     CPU     %user     %nice   %system   %iowait    %steal     %idle
    19时17分44秒 all 0.00 0.00 0.17 0.06 0.00 99.77
    平均时间: all 0.00 0.00 0.17 0.06 0.00 99.77

    测试

    CPU:all表示统计信息为所有 CPU的平均值。
    %user:显示在用户级别(application)运行使用 CPU 总时间的百分比。
    %nice:显示在用户级别,用于nice操作,所占用 CPU总时间的百分比。
    %system:在核心级别(kernel)运行所使用 CPU总时间的百分比。
    %iowait:显示用于等待I/O操作占用 CPU总时间的百分比。
    %steal:管理程序(hypervisor)为另一个虚拟进程提供服务而等待虚拟 CPU 的百分比。
    %idle:显示 CPU空闲时间占用 CPU总时间的百分比。 .若 %iowait的值过高,表示硬盘存在I/O瓶颈
    .若 %idle的值高但系统响应慢时,有可能是 CPU等待分配内存,此时应加大内存容量
    .若 %idle的值持续低于1,则系统的 CPU处理能力相对较低,表明系统中最需要解决的资源是 CPU。

    说明


注:三个数值:1分钟内,5分钟内,15分钟内平均负载。

  • 注:1分钟内平均有多少个进程占用了cpu。
  • 负载低:负载值/CPU个数=小于1
  • 负载高:负载值/CPU个数=大于1
  • 注:查看cpu个数cat /proc/cpuinfo
  • processor    :     #cpu 个数 0代表1
    vendor_id : GenuineIntel
    cpu family :
    model :
    model name : Intel(R) Core(TM) i5-4200M CPU @ .50GHz
    stepping :
    cpu MHz : 2494.299
    cache size : KB
    fdiv_bug : no
    hlt_bug : no
    f00f_bug : no
    coma_bug : no
    fpu : yes
    fpu_exception : yes
    cpuid level :
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss nx pdpe1gb rdtscp lm constant_tsc up arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf unfair_spinlock pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm ida arat epb xsaveopt pln pts dts fsgsbase smep
    bogomips : 4988.59
    clflush size :
    cache_alignment :
    address sizes : bits physical, bits virtual
    power management:

    测试