0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Linuxのパフォーマンスチューニング

Posted at

簡易チェックリスト

ツール        チェック内容 見どころ
uptime 負荷の平均 1、5、15分の平均の比較より負荷が上がっているか下がっているかわかる。 w でも同じ情報が確認可能
dmesg -T | tail カーネルエラー OOMなど致命的なもの
vmstat -SM 1 スワップ、CPU使用率などシステムレベルでの統計量 ※あとで見どころ追記
mpstat -P ALL 1 CPU間のバランス CPUの使用率に偏りがある場合はスレッドのスケーリングに問題がある
pidstat 1 プロセス毎のCPUの使用状況。 予想外にCPUを消費しているプロセスや、各プロセスのユーザー/システムCPU時間を見る
iostat -sxz 1 ディスクのI/O統計 ※あとで見どころ追記
free -mh キャッシュを含むメモリの使用状況 Mem: の Total と Available
sar -n DEV 1 ネットワークデバイスI/O パケットとスループット
sar -n TCP,ETCP 1 TCP統計 接続のスピード、再送
top 全体的なチェック ※あとで見どころ追記
  • 参考情報
    [1] P.16

参考文献

[1] Brendan Gregg (著), 西脇 靖紘 (監修), 長尾 高弘 (翻訳)  「詳解 システム・パフォーマンス 第2版」 ‎オライリー・ジャパン

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?