mirror of https://github.com/redis/redis.git
childrens -> children in INFO output field names. This is a backward incompatible change, but really a minimal one.
This commit is contained in:
parent
6504634019
commit
5a9dd97c7c
|
|
@ -1441,8 +1441,8 @@ sds genRedisInfoString(char *section) {
|
|||
"# CPU\r\n"
|
||||
"used_cpu_sys:%.2f\r\n"
|
||||
"used_cpu_user:%.2f\r\n"
|
||||
"used_cpu_sys_childrens:%.2f\r\n"
|
||||
"used_cpu_user_childrens:%.2f\r\n",
|
||||
"used_cpu_sys_children:%.2f\r\n"
|
||||
"used_cpu_user_children:%.2f\r\n",
|
||||
(float)self_ru.ru_utime.tv_sec+(float)self_ru.ru_utime.tv_usec/1000000,
|
||||
(float)self_ru.ru_stime.tv_sec+(float)self_ru.ru_stime.tv_usec/1000000,
|
||||
(float)c_ru.ru_utime.tv_sec+(float)c_ru.ru_utime.tv_usec/1000000,
|
||||
|
|
|
|||
Loading…
Reference in New Issue