Files
tldr/pages.zh/linux/sar.md

28 lines
587 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# sar
> 监控各种Linux子系统的性能。
> 更多信息请访问:<https://manned.org/sar>。
- 报告发给物理设备的I/O和传输速率每秒一次按CTRL+C退出
`sar -b {{1}}`
- 报告共10个网络设备统计信息每2秒一次
`sar -n DEV {{2}} {{10}}`
- 报告CPU利用率每2秒一次
`sar -u ALL {{2}}`
- 报告共20个内存利用率统计信息每秒一次
`sar -r ALL {{1}} {{20}}`
- 报告运行队列长度和负载平均值,每秒一次:
`sar -q {{1}}`
- 报告分页统计信息每5秒一次
`sar -B {{5}}`