You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As suggested here:
https://groups.google.com/forum/?fromgroups#!topic/psutil/beLld4Mvzjs Currently
on Linux psutil.cpu_times() is omitting 3 CPU stats available on modern Linux kernels:
- steal (Linux >= 2.6.11): stolen time, which is the time spent in other
operating systems when running in a virtualized environment
- guest (Linux >= 2.6.24): the time spent running a virtual CPU for guest
operating systems under the control of the Linux kernel.
- guest_nice (Linux >= 3.2.0): same as above but refers to 'niced'
(prioritized) virtual CPU time
Other than the fact that they may be useful to some, it must also be considered
that psutil.cpu_percent() is currently not taking them into account therefore
the CPU percentage we get is not accurate.
From g.rodola on March 25, 2013 13:54:49
Original issue: http://code.google.com/p/psutil/issues/detail?id=361
The text was updated successfully, but these errors were encountered: