Think before you speak, read before you think.

使用 sar 查看系统监控

by

in

安装

yum install -y sysstat

使用 sar 可以监控 cpu, 内存, swap, I/O, load, network实时以及历史指定时间的值

定时任务文件

/etc/cron.d/sysstat

查看 cpu ,每 1 秒钟一次,共 3 次

sar 1 3

查看 内存使用

sar -r

查看 swap 使用

sar -S

查看 I/O,整个系统

sar -b

查看单个设备 I/O

sar -d

查看 context switch 上下文切换

sar -w

查看队列和负载情况

sar -q

查看网络情况

sar -n DEV 1

参考:

10 Useful Sar (Sysstat) Examples for UNIX / Linux Performance Monitoring


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *