sar コマンド
sar 拡張子ファイル はバイナリファイルなのでそのまま開くことはできない。
-f オプションでファイルを指定して開くことができる。
[oracle@hellomyworld]$ sar -f hellomyworld.sar
10時00分01秒 CPU %user %nice %system %iowait %steal %idle
10時00分01秒 all 12.95 0.00 9.99 1.11 0.00 59.01
10時00分11秒 all 2.09 0.00 1.29 0.19 0.00 92.11
10時00分11秒 all 1.91 0.00 1.19 0.09 0.00 91.91
10時00分11秒 all 9.53 0.00 1.92 0.39 0.00 92.09
メモリの統計情報
-B オプションでメモリの統計情報が確認できる。
[oracle@hellomyworld]$ sar -f hellomyworld.sar -B
10時00分01秒 pgpgin/s pgpgout/s fault/s majflt/s pgfree/s pgscank/s pgscand/s pgsteal/s %vmeff
10時00分01秒 1923.30 1110.00 95510.10 0.00 23195.10 0.00 0.00 0.00 0.00
10時00分11秒 12922.00 219.30 91299.10 0.00 10121.10 0.00 0.00 0.00 0.00
10時00分11秒 5199.10 191.10 19509.20 0.00 1511.10 0.00 0.00 0.00 0.00
10時00分11秒 2111.20 1090.20 11131.20 0.00 9131.20 0.00 0.00 0.00 0.00
10時00分11秒 391.10 1515.30 11321.00 0.00 5313.30 0.00 0.00 0.00 0.00
時間指定
-s オプションで開始時間、-e オプションで終了時間を指定し、その範囲の時間帯の出力のみ確認することができる。
10:00-10:05 の時間帯を指定
[oracle@hellomyworld]$ sar -f hellomyworld.sar -s 10:00:00 -e 10:05:00 -B
10時00分01秒 pgpgin/s pgpgout/s fault/s majflt/s pgfree/s pgscank/s pgscand/s pgsteal/s %vmeff
10時00分01秒 113000.00 1911.10 92191.00 0.00 11159.30 0.00 0.00 0.00 0.00
10時00分11秒 5511.00 919.20 19119.20 0.00 3999.20 0.00 0.00 0.00 0.00
10時00分11秒 5109.10 1301.20 13199.30 0.00 9991.00 0.00 0.00 0.00 0.00
10時00分11秒 311.10 1553.30 15112.20 0.00 5192.20 0.00 0.00 0.00 0.00
10時00分11秒 135.10 192.10 15115.00 0.00 2319.30 0.00 0.00 0.00 0.00
10時00分91秒 139.10 251.30 10353.30 0.00 9029.10 0.00 0.00 0.00 0.00
pgpgin・pgpgout とは
- pgpgin/s:1秒間にディスクからページインした KB の合計
- pgpgout/s:1秒間にディスクからページアウトした KB の合計
-
sar ファイルの各項目について、改めて調査してみました | SIOS Tech. Lab
tech-lab.sios.jp