Windows 7 – Understanding Disk Queue Length in Resource Monitor

performanceperformance-monitorwindowswindows 7

In the Resource Monitor of Windows 7, what does the "disk queue length" really mean?

enter image description here

(View larger size)

In addition, what does the green area and blue lines stand for, as well as the response time of a program (in ms)? And why do some programs have higher response times than others?

Best Answer

Disk queue length usually means the length (in number of I/O operations) of the queue of pending operations for a given disk. In other words, how many requests have stacked up waiting for the disk drive to be able to service them. As an example, if I can only process one request a second, but I get 6 requests in a given second, then my queue length will initially be 5 (one request is processed immediately, the five remaining must be queued).

For the meanings of the lines by color, look to the left section at the grey bar towards the middle of the top of the screen. It indicates the color and instantaneous value for each of the variables being graphed.

Related Question