What device is used to display the use of Redis CPU

I ran the INFO CPU command in the CLI Redis and got the following result:

 used_cpu_sys:4785.73 used_cpu_user:4843.73 used_cpu_sys_children:0.00 used_cpu_user_children:0.00 

My question is: which block is used for these numbers?

Is it CPU time or CPU consumption or something else?

+6
source share
1 answer

This is the processor time (expressed in seconds) accumulated since the start of the Redis instance, as the getrusage () call reports.

+14
source

All Articles