The output of the command psutil.cpu_times(
) is like this:
scputimes(user=2298.7, nice=20.11, system=728.58, idle=49415.86, iowait=153.26, irq=0.08, softirq=16.78, steal=0.0, guest=0.0, guest_nice=0.0)
The user
and system
values are for how long the CPU has spent in user vs system operations, but what is the meaning of the other returned values?
And how can I get the number of context switches that happed in the last 3 minutes for example?
Those are cumulative numbers therefore they represent the amount of time the CPU has spent since the system has started. As for the meaning of each value (idle, iowait, etc.) take a look at "man proc":