歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> 關於Linux

Linux iostat和little's law

Linux iostat和little's law   先看iostat輸出: [plain]  root@cnFOL:~# iostat -xm 60 10   Linux 3.2.0-54-generic-pae (cnFOL)      2013年10月28日  _i686_  (1 CPU)      avg-cpu:  %user   %nice %system %iowait  %steal   %idle              0.18    0.06    0.08    0.23    0.00   99.45      Device:         rrqm/s   wrqm/s     r/s     w/s    rMB/s    wMB/s avgrq-sz avgqu-sz   await r_await w_await  svctm  %util   sda               0.13     0.79    0.30    0.30     0.00     0.00    28.74     0.02   26.44    5.89   46.42   4.31   0.26      avg-cpu:  %user   %nice %system %iowait  %steal   %idle              0.07    0.00    0.07    0.13    0.00   99.73      Device:         rrqm/s   wrqm/s     r/s     w/s    rMB/s    wMB/s avgrq-sz avgqu-sz   await r_await w_await  svctm  %util   sda               0.00     0.20    0.00    0.20     0.00     0.00    16.00     0.00    6.00    0.00    6.00   6.00   0.12     參數注釋 r/s:每秒讀操作次數 w/s:每秒寫操作次數 await:讀寫操作的平均響應時間 svctm:讀寫操作的平均服務時間 avgqu-sz:平均隊列長度 %util:平均利用率   科特爾法則: 平均隊列長度=平均到達速率*平均響應時間*0.001 計算如下: avgqu-sz=(r/s+w/s)*await*0.001   利用率法則: 平均利用率=平均達到速率*平均服務時間*0.001 計算如下: %util=(r/s+w/s)*svctm*0.001  
Copyright © Linux教程網 All Rights Reserved