标签:ja
下载osw 下载地址:
https://support.oracle.com
Doc ID Doc ID 301137.1
下载对应版本,例如:
oswatcher-7.3.3-2.el6.noarch.rpm
oswbb-service-7.3.4-1.noarch.rpm
rpm -ivh oswatcher-7.3.3-2.el6.noarch.rpm
systemctl start oswatcher
systemctl enable oswatcher
rpm -ivh oswatcher-7.3.3-2.el6.noarch.rpm
/etc/init.d/oswatcher start
chkconfig oswatcher on
chkconfig --list oswatcher
rpm -e --nodeps oswbb-service-7.3.4-1
osw 每30分钟收集一次数据
ps -ef | grep -i osw
/bin/bash /usr/sbin/OSWatcher -i 30 -m 48 -l /var/log/oswatcher/log /var/log/oswatcher
在osw的archive目录有如下几个文件,一个小时生成一个文件,分别记录如下的内容
oswifconfig => ifconfig
oswiostat => iostat -x
oswmeminfo => cat /proc/meminfo
oswmpstat => mpstat
oswnetstat => Ip,TCP,Icmp,UDP相关信息
oswprvtnet => osw没有搜集
oswps => ps aux
oswslabinfo cat /proc/slabinfo
oswtop topc
oswvmstat => vmstat
如果要排查问题,可以将oswiostat、oswvmstat、oswmeminfo、oswtop和oswps结合来定位问题
查看IO的idle
grep "idle" -A 1 iostat.dat| grep -v idle|grep -v "-"| awk ‘{print $NF}‘|less
标签:ja
原文地址:http://blog.51cto.com/395469372/2121251