• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Monitoring Disk Access/Usage

JAW

Gawd
Joined
Feb 8, 2004
Messages
518
What's the best way to monitor the IO of a raid array? I want to see how much the drives are being accessed and if they are bottlenecking.
 
Start\Run\perfmon.msc if you are on Windows 2000/XP is a good place to start.
 
"vmstat 3" on Linux reports on this kind of thing (and lots of others). Here's a sample line:
Code:
procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in    cs us sy id wa
 2  0      0  11924  42572 114712    0    0     2    24    4    26 86  0 13  0
 2  0      0  11812  42572 114712    0    0     0    11 1012    65 100  0  0  0
The columns relevant to your question are under "io"; bi and bo mean blocks in and out, respectively. Blocks are defined to be one megabyte. So I read 2 blocks and wrote 24, then read 0 and wrote 11. These stats are taken 3 seconds apart, so the throughput was an average of 6MB/s or so writing to disk.

Determining if they're bottlenecking and what's causing it can be difficult to diagnose. Controller? Disks? OS?

 
Back
Top