mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 00:52:38 +00:00
bgsave_in_progress field in INFO output
This commit is contained in:
parent
d68ed1201a
commit
be2bb6b07e
2
redis.c
2
redis.c
@ -3343,6 +3343,7 @@ static void infoCommand(redisClient *c) {
|
||||
"connected_slaves:%d\r\n"
|
||||
"used_memory:%zu\r\n"
|
||||
"changes_since_last_save:%lld\r\n"
|
||||
"bgsave_in_progress:%d\r\n"
|
||||
"last_save_time:%d\r\n"
|
||||
"total_connections_received:%lld\r\n"
|
||||
"total_commands_processed:%lld\r\n"
|
||||
@ -3353,6 +3354,7 @@ static void infoCommand(redisClient *c) {
|
||||
listLength(server.slaves),
|
||||
server.usedmemory,
|
||||
server.dirty,
|
||||
server.bgsaveinprogress,
|
||||
server.lastsave,
|
||||
server.stat_numconnections,
|
||||
server.stat_numcommands,
|
||||
|
Loading…
Reference in New Issue
Block a user