1N/AThis is a demonstration of the dispqlen.d script,
1N/A
1N/A
1N/AHere we run it on a single CPU desktop,
1N/A
1N/A # dispqlen.d
1N/A Sampling... Hit Ctrl-C to end.
1N/A ^C
1N/A CPU 0
1N/A value ------------- Distribution ------------- count
1N/A < 0 | 0
1N/A 0 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 1790
1N/A 1 |@@@ 160
1N/A 2 | 10
1N/A 3 | 0
1N/A
1N/AThe output shows the length of the dispatcher queue is mostly 0. This is
1N/Aevidence that the CPU is not very saturated. It does not indicate that the
1N/ACPU is idle - as we are measuring the length of the queue, not what is
1N/Aon the CPU.
1N/A
1N/A
1N/A
1N/AHere it is run on a multi CPU server,
1N/A
1N/A # dispqlen.d
1N/A Sampling... Hit Ctrl-C to end.
1N/A ^C
1N/A CPU 1
1N/A value ------------- Distribution ------------- count
1N/A < 0 | 0
1N/A 0 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 1573
1N/A 1 |@@@@@@@@@ 436
1N/A 2 | 4
1N/A 3 | 0
1N/A
1N/A CPU 4
1N/A value ------------- Distribution ------------- count
1N/A < 0 | 0
1N/A 0 |@@@@@@@@@@@@@@@@@@@@@@ 1100
1N/A 1 |@@@@@@@@@@@@@@@@@@ 912
1N/A 2 | 1
1N/A 3 | 0
1N/A
1N/A CPU 0
1N/A value ------------- Distribution ------------- count
1N/A < 0 | 0
1N/A 0 |@@@@@@@@@@@@@@@@@ 846
1N/A 1 |@@@@@@@@@@@@@@@@@@@@@@@ 1167
1N/A 2 | 0
1N/A
1N/A CPU 5
1N/A value ------------- Distribution ------------- count
1N/A < 0 | 0
1N/A 0 |@@@@@@@@ 397
1N/A 1 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 1537
1N/A 2 |@@ 79
1N/A 3 | 0
1N/A
1N/AThe above output shows that threads are queueing up on CPU 5 much more than
1N/ACPU 0.
1N/A