全部博文(343)
分类: LINUX
2012-11-04 12:54:25
[root@fedora ~]# yum -y install sysstat
Once installed you can check out the sysstat config file (/etc/sysconfig/sysstat) and configure how long to sar will keep your logfiles, on my system the default was 7 days. I changed this to 30 days.
The cron job for sar is located here (/etc/cron.d/sysstat) if you want to modify it as well.
Once installed and configured to your liking you must ensure that it starts and runs at boot time. I accomplished this via the command below.
[root@fedora ~]# chkconfig sysstat on && service sysstat start
Once up and running it will write its logs out to /var/log/sa, and
you can read those files with the following command (sar -d
Additonally you may run sar interatively, below are a few sample commands.
View disk i/o and transfer rate stats : [root@fedora cron.d]# sar -b 3 10
View memory and swap space stats : [root@fedora sa]# sar -r 3 10
View swapping stats : [root@fedora cron.d]# sar -W 3 10
View network stats : [root@fedora sa]# sar -n DEV 3 10
View CPU stats : [root@fedora sa]# sar -P ALL 3 10
View All stats : [root@fedora sa]# sar -A 3 10