免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1787 | 回复: 0
打印 上一主题 下一主题

[系统管理] Linux使用sar监控系统资源使用情况 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-05-11 13:35 |只看该作者 |倒序浏览
sar——systemp activity report。
sar是一个用来监视主机系统资源使用率的工具。
监视cpu使用率:
sar -P ALL,-P表示监视CPU,ALL表示监视所有的CPU。
[root@host ~]# sar -P ALL 2 5
Linux 2.6.18-164.el5 (host)   05/11/2012

11:54:38 AM       CPU     %user     %nice   %system   %iowait    %steal     %idle
11:54:40 AM       all     92.94      0.00      7.06      0.00      0.00      0.00
11:54:40 AM         0     98.00      0.00      2.00      0.00      0.00      0.00
11:54:40 AM         1     99.50      0.00      0.50      0.00      0.00      0.00
11:54:40 AM         2     89.50      0.00     10.50      0.00      0.00      0.00
11:54:40 AM         3     94.50      0.00      5.50      0.00      0.00      0.00
11:54:40 AM         4    100.00      0.00      0.00      0.00      0.00      0.00
11:54:40 AM         5     89.55      0.00     10.45      0.00      0.00      0.00
11:54:40 AM         6     81.09      0.00     18.91      0.00      0.00      0.00
11:54:40 AM         7     91.46      0.00      8.54      0.00      0.00      0.00

11:54:40 AM       CPU     %user     %nice   %system   %iowait    %steal     %idle
11:54:42 AM       all     89.56      0.00     10.44      0.00      0.00      0.00
11:54:42 AM         0     96.73      0.00      3.27      0.00      0.00      0.00
11:54:42 AM         1     89.35      0.00     10.65      0.00      0.00      0.00
11:54:42 AM         2     93.95      0.00      6.05      0.00      0.00      0.00
11:54:42 AM         3     62.33      0.00     37.67      0.00      0.00      0.00
11:54:42 AM         4     95.83      0.00      4.17      0.00      0.00      0.00
11:54:42 AM         5     90.74      0.00      9.26      0.00      0.00      0.00
11:54:42 AM         6     95.81      0.00      4.19      0.00      0.00      0.00
11:54:42 AM         7     91.67      0.00      8.33      0.00      0.00      0.00

[root@host ~]# sar -P 1 2 5  //指定查看某个cpu 的使用情况,多核心CPU主机中,这里的CPU是逻辑CPU
Linux 2.6.18-164.el5 (host)   05/11/2012

01:27:14 PM       CPU     %user     %nice   %system   %iowait    %steal     %idle
01:27:16 PM         1     91.00      0.00      9.00      0.00      0.00      0.00
01:27:18 PM         1     94.53      0.00      5.47      0.00      0.00      0.00
01:27:20 PM         1     96.48      0.00      3.52      0.00      0.00      0.00
01:27:22 PM         1     97.00      0.00      3.00      0.00      0.00      0.00
01:27:24 PM         1     97.50      0.00      2.50      0.00      0.00      0.00
Average:            1     95.30      0.00      4.70      0.00      0.00      0.00

sar查看有关网络相关的统计数据:
[root@host ~]# sar -n ALL 3 2
Linux 2.6.18-164.el5 (host)   05/11/2012

01:30:43 PM     IFACE   rxpck/s   txpck/s   rxbyt/s   txbyt/s   rxcmp/s   txcmp/s  rxmcst/s
01:30:46 PM        lo   6286.38   6286.38 24631859.14 24631859.14      0.00      0.00      0.00
01:30:46 PM      eth0   3488.37   2051.16 2746581.73 1316023.59      0.00      0.00      0.00
01:30:46 PM      eth1    797.34    562.46 753636.88 329566.11      0.00      0.00      0.00
01:30:46 PM      eth2      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM      eth3      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM      sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM     bond0   4285.71   2613.62 3500218.60 1645589.70      0.00      0.00      0.00
01:30:46 PM     bond1      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM     bond2      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM     bond3      0.00      0.00      0.00      0.00      0.00      0.00      0.00

01:30:43 PM     IFACE   rxerr/s   txerr/s    coll/s  rxdrop/s  txdrop/s  txcarr/s  rxfram/s  rxfifo/s  txfifo/s
01:30:46 PM        lo      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM      eth0      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM      eth1      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM      eth2      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM      eth3      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM      sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM     bond0      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM     bond1      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM     bond2      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:46 PM     bond3      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00

01:30:43 PM    call/s retrans/s    read/s   write/s  access/s  getatt/s
01:30:46 PM      0.00      0.00      0.00      0.00      0.00      0.00

01:30:43 PM   scall/s badcall/s  packet/s     udp/s     tcp/s     hit/s    miss/s   sread/s  swrite/s saccess/s sgetatt/s
01:30:46 PM      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00

01:30:43 PM    totsck    tcpsck    udpsck    rawsck   ip-frag
01:30:46 PM       268        13        12         0         0

01:30:46 PM     IFACE   rxpck/s   txpck/s   rxbyt/s   txbyt/s   rxcmp/s   txcmp/s  rxmcst/s
01:30:49 PM        lo  10652.33  10652.33 40147297.33 40147297.33      0.00      0.00      0.00
01:30:49 PM      eth0   3360.33   2011.67 2297893.33 1611279.67      0.00      0.00      0.00
01:30:49 PM      eth1   3298.67   2930.00 2881895.00 2240066.33      0.00      0.00      0.00
01:30:49 PM      eth2      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM      eth3      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM      sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM     bond0   6659.00   4941.67 5179788.33 3851346.00      0.00      0.00      0.00
01:30:49 PM     bond1      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM     bond2      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM     bond3      0.00      0.00      0.00      0.00      0.00      0.00      0.00

01:30:46 PM     IFACE   rxerr/s   txerr/s    coll/s  rxdrop/s  txdrop/s  txcarr/s  rxfram/s  rxfifo/s  txfifo/s
01:30:49 PM        lo      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM      eth0      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM      eth1      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM      eth2      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM      eth3      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM      sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM     bond0      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM     bond1      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM     bond2      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
01:30:49 PM     bond3      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00

01:30:46 PM    call/s retrans/s    read/s   write/s  access/s  getatt/s
01:30:49 PM      0.00      0.00      0.00      0.00      0.00      0.00

01:30:46 PM   scall/s badcall/s  packet/s     udp/s     tcp/s     hit/s    miss/s   sread/s  swrite/s saccess/s sgetatt/s
01:30:49 PM      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00

01:30:46 PM    totsck    tcpsck    udpsck    rawsck   ip-frag
01:30:49 PM       268        13        12         0         0

Average:        IFACE   rxpck/s   txpck/s   rxbyt/s   txbyt/s   rxcmp/s   txcmp/s  rxmcst/s
Average:           lo   8465.72   8465.72 32376670.22 32376670.22      0.00      0.00      0.00
Average:         eth0   3424.46   2031.45 2522610.82 1463405.99      0.00      0.00      0.00
Average:         eth1   2045.92   1744.26 1815995.34 1283226.79      0.00      0.00      0.00
Average:         eth2      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:         eth3      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:         sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:        bond0   5470.38   3775.71 4338606.16 2746632.78      0.00      0.00      0.00
Average:        bond1      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:        bond2      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:        bond3      0.00      0.00      0.00      0.00      0.00      0.00      0.00

Average:        IFACE   rxerr/s   txerr/s    coll/s  rxdrop/s  txdrop/s  txcarr/s  rxfram/s  rxfifo/s  txfifo/s
Average:           lo      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:         eth0      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:         eth1      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:         eth2      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:         eth3      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:         sit0      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:        bond0      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:        bond1      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:        bond2      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00
Average:        bond3      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00

Average:       call/s retrans/s    read/s   write/s  access/s  getatt/s
Average:         0.00      0.00      0.00      0.00      0.00      0.00

Average:      scall/s badcall/s  packet/s     udp/s     tcp/s     hit/s    miss/s   sread/s  swrite/s saccess/s sgetatt/s
Average:         0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00      0.00

Average:       totsck    tcpsck    udpsck    rawsck   ip-frag
Average:          268        13        12         0         0
[root@host ~]#
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP