14
14

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 5 years have passed since last update.

Bonnie++でファイルシステムのI/Oパフォーマンスを測定する

Last updated at Posted at 2014-05-25

Bonnie++: ファイルシステムのI/Oの早さを測定するツール

インストール(Ubuntu 14.04)

apt-get install bonnie++

使い方

bonnie++ -d /tmp -s 512 -r 256 -u root
  • -d:測定対象のディレクトリ
  • -r:メモリサイズ(MB)
  • -s:作成するファイルの最大サイズ(MB)
  • -u:実行ユーザ

出力

出力は、実行過程・実行結果・実行結果CSVの3つのパートからなる

ansible.png

HTML形式で出力する

bon_csv2htmlで実行結果CSVをHTML形式に変換可能。実行結果CSVの部分だけが標準出力になるので、パイプで繋ぐだけで良い。また -q オプションは実行過程を表示しないという指定。

bonnie++ -d /tmp-s 512 -r 256 -u root -q | bon_csv2html > result.html

HTML形式のレポート:

Bonnie___Benchmark_results.png

14
14
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
14
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?