How to find the processor queue length in linux

后端 未结 4 1165
执笔经年
执笔经年 2021-02-06 04:56

Trying to determine the Processor Queue Length (the number of processes that ready to run but currently aren\'t) on a linux machine. There is a WMI call in Windows for this metr

4条回答
  •  借酒劲吻你
    2021-02-06 05:24

    uptime will give you the recent load average, which is approximately the average number of active processes. uptime reports the load average over the last 1, 5, and 15 minutes. It's a per-system measurement, not per-CPU.

    Not sure what the processor queue length in Windows is, hopefully it's close enough to this?

提交回复
热议问题