0

是秒吗?我试图将它与top -n 1 | grep Cpu命令的输出相匹配,它们看起来不同!

>>> psutil.cpu_times()
scputimes(user=678.99, nice=2.15, system=405.34, idle=414554.14, iowait=12.95, irq=0.0, softirq=2.43, steal=95.2, guest=0.0, guest_nice=0.0)
>>> exit()
[root@Server]# top -n 1 | grep Cpu
%Cpu(s):  0.0 us,  0.0 sy,  0.0 ni,100.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
4

1 回答 1

0

是的,它是几秒钟。参考文档在这里:

https://psutil.readthedocs.io/en/latest/#psutil.cpu_times

每个属性代表 CPU 在给定模式下花费的秒数。

有关top给您的描述,请参阅此答案:

https://superuser.com/questions/575202/understanding-top-command-in-unix

您看到的值top是百分比,因此它们与您看到的值不一致psutil

老实说,目前尚不清楚您要在这里实现什么。

于 2019-04-03T15:02:25.217 回答