web-dev-qa-db-ja.com

CentOSで最後に起動してからのディスクへのI / O(読み取り/書き込み)の数を表示します

Iostat(または他のツール)を使用して、「最後のサーバーの再起動以降」の読み取り/書き込み操作の数を取得することは可能ですか?

つまり、リアルタイムではなく、前回の起動以降にサーバーが実行した読み取り/書き込みの数を知る必要があります。

ありがとう!

データ量については、iostatを参照してください。

[root@example ~]# iostat -m
Linux 2.6.32-431.11.2.el6.x86_64 (example.com)  08/08/2014  _x86_64_    (2 CPU)

avg-cpu:  %user   %Nice %system %iowait  %steal   %idle
           0.38    0.00    4.10    0.36    0.10   95.07

Device:            tps    MB_read/s    MB_wrtn/s    MB_read    MB_wrtn
sda               0.95         0.01         0.01      68451      77290
vda              13.95         0.26         0.33    2871276    3572093
dm-0              1.93         0.01         0.01      64657      73426
dm-1             14.39         0.26         0.33    2871274    3572093

-mは(ブロックではなく)MiBで出力を表示し、MB_readMB_wrtnは探している数値です。

I/O操作(要求)の合計量については、/sys/block/$DEV/$PART/statを参照してください。例: /sys/block/sda/sda1/statまたは/proc/diskstats、これは次のように解釈できます(これは カーネルドキュメントツリー からのものです):

What:       /proc/diskstats
Date:       February 2008
Contact:    Jerome Marchand <[email protected]>
Description:
        The /proc/diskstats file displays the I/O statistics
        of block devices. Each line contains the following 14
        fields:
         1 - major number
         2 - minor mumber
         3 - device name
         4 - reads completed successfully
         5 - reads merged
         6 - sectors read
         7 - time spent reading (ms)
         8 - writes completed
         9 - writes merged
        10 - sectors written
        11 - time spent writing (ms)
        12 - I/Os currently in progress
        13 - time spent doing I/Os (ms)
        14 - weighted time spent doing I/Os (ms)
        For more details refer to Documentation/iostats.txt
5
Sven