INFO [section]
The INFO command returns information and statistics about the server in a format that is simple to parse by computers and easy to read by humans.
The optional parameter can be used to select a specific section of information:
server
: General information about the Redis serverclients
: Client connections sectionmemory
: Memory consumption related informationpersistence
: RDB and AOF related informationstats
: General statisticsreplication
: Master/slave replication informationcpu
: CPU consumption statisticscommandstats
: Redis command statisticscluster
: Redis Cluster sectionkeyspace
: Database related statisticsIt can also take the following values:
all
: Return all sectionsdefault
: Return only the default set of sectionsWhen no parameter is provided, the default
option is assumed.
Bulk string reply: as a collection of text lines.
Lines can contain a section name (starting with a # character) or a property. All the properties are in the form of field:value
terminated by \r\n
.
# Server
redis_version:999.999.999
redis_git_sha1:e09e31b1
redis_git_dirty:0
redis_build_id:f05c0e7d7d91e005
redis_mode:standalone
os:Linux 4.8.0-1-amd64 x86_64
arch_bits:64
multiplexing_api:epoll
gcc_version:6.2.0
process_id:27849
run_id:66c644192f50abb7b417ebf72bfd7a14136b4732
tcp_port:6379
uptime_in_seconds:6492168
uptime_in_days:75
hz:10
lru_clock:11030974
executable:/usr/local/bin/redis-server
config_file:
# Clients
connected_clients:4
client_longest_output_list:0
client_biggest_input_buf:0
blocked_clients:0
# Memory
used_memory:537535640
used_memory_human:512.63M
used_memory_rss:553107456
used_memory_rss_human:527.48M
used_memory_peak:537535640
used_memory_peak_human:512.63M
used_memory_peak_perc:100.00%
used_memory_overhead:158268632
used_memory_startup:487168
used_memory_dataset:379267008
used_memory_dataset_perc:70.62%
total_system_memory:1044783104
total_system_memory_human:996.38M
used_memory_lua:37888
used_memory_lua_human:37.00K
maxmemory:0
maxmemory_human:0B
maxmemory_policy:noeviction
mem_fragmentation_ratio:1.03
mem_allocator:jemalloc-4.0.3
lazyfree_pending_objects:0
# Persistence
loading:0
rdb_changes_since_last_save:15006632
rdb_bgsave_in_progress:0
rdb_last_save_time:1480933814
rdb_last_bgsave_status:ok
rdb_last_bgsave_time_sec:-1
rdb_current_bgsave_time_sec:-1
rdb_last_cow_size:0
aof_enabled:0
aof_rewrite_in_progress:0
aof_rewrite_scheduled:0
aof_last_rewrite_time_sec:-1
aof_current_rewrite_time_sec:-1
aof_last_bgrewrite_status:ok
aof_last_write_status:ok
aof_last_cow_size:0
# Stats
total_connections_received:75
total_commands_processed:37032496
instantaneous_ops_per_sec:600
total_net_input_bytes:3052947231
total_net_output_bytes:4874064439
instantaneous_input_kbps:48.24
instantaneous_output_kbps:552.27
rejected_connections:0
sync_full:0
sync_partial_ok:0
sync_partial_err:0
expired_keys:44282
evicted_keys:0
keyspace_hits:8592050
keyspace_misses:3653355
pubsub_channels:0
pubsub_patterns:0
latest_fork_usec:0
migrate_cached_sockets:0
# Replication
role:master
connected_slaves:0
master_replid:d71e338ae46cad6b63167a8a63fa0358486d8f28
master_replid2:0000000000000000000000000000000000000000
master_repl_offset:0
second_repl_offset:-1
repl_backlog_active:0
repl_backlog_size:1048576
repl_backlog_first_byte_offset:0
repl_backlog_histlen:0
# CPU
used_cpu_sys:6301.18
used_cpu_user:78563.98
used_cpu_sys_children:0.00
used_cpu_user_children:0.00
# Cluster
cluster_enabled:0
# Keyspace
db0:keys=3099355,expires=1583,avg_ttl=52256070937245
Please note depending on the version of Redis some of the fields have been added or removed. A robust client application should therefore parse the result of this command by skipping unknown properties, and gracefully handle missing fields.
Here is the description of fields for Redis >= 2.4.
Here is the meaning of all fields in the server section:
redis_version
: Version of the Redis serverredis_git_sha1
: Git SHA1redis_git_dirty
: Git dirty flagos
: Operating system hosting the Redis serverarch_bits
: Architecture (32 or 64 bits)multiplexing_api
: event loop mechanism used by Redisgcc_version
: Version of the GCC compiler used to compile the Redis serverprocess_id
: PID of the server processrun_id
: Random value identifying the Redis server (to be used by Sentinel and Cluster)tcp_port
: TCP/IP listen portuptime_in_seconds
: Number of seconds since Redis server startuptime_in_days
: Same value expressed in dayslru_clock
: Clock incrementing every minute, for LRU managementHere is the meaning of all fields in the clients section:
connected_clients
: Number of client connections (excluding connections from slaves)client_longest_output_list
: longest output list among current client connectionsclient_biggest_input_buf
: biggest input buffer among current client connectionsblocked_clients
: Number of clients pending on a blocking call (BLPOP, BRPOP, BRPOPLPUSH)Here is the meaning of all fields in the memory section:
used_memory
: total number of bytes allocated by Redis using its allocator (either standard libc, jemalloc, or an alternative allocator such as tcmalloc
used_memory_human
: Human readable representation of previous valueused_memory_rss
: Number of bytes that Redis allocated as seen by the operating system (a.k.a resident set size). This is the number reported by tools such as top(1)
and ps(1)
used_memory_peak
: Peak memory consumed by Redis (in bytes)used_memory_peak_human
: Human readable representation of previous valueused_memory_lua
: Number of bytes used by the Lua enginemem_fragmentation_ratio
: Ratio between used_memory_rss
and used_memory
mem_allocator
: Memory allocator, chosen at compile timeIdeally, the used_memory_rss
value should be only slightly higher than used_memory
. When rss >> used, a large difference means there is memory fragmentation (internal or external), which can be evaluated by checking mem_fragmentation_ratio
. When used >> rss, it means part of Redis memory has been swapped off by the operating system: expect some significant latencies.
Because Redis does not have control over how its allocations are mapped to memory pages, high used_memory_rss
is often the result of a spike in memory usage.
When Redis frees memory, the memory is given back to the allocator, and the allocator may or may not give the memory back to the system. There may be a discrepancy between the used_memory
value and memory consumption as reported by the operating system. It may be due to the fact memory has been used and released by Redis, but not given back to the system. The used_memory_peak
value is generally useful to check this point.
Here is the meaning of all fields in the persistence section:
loading
: Flag indicating if the load of a dump file is on-goingrdb_changes_since_last_save
: Number of changes since the last dumprdb_bgsave_in_progress
: Flag indicating a RDB save is on-goingrdb_last_save_time
: Epoch-based timestamp of last successful RDB saverdb_last_bgsave_status
: Status of the last RDB save operationrdb_last_bgsave_time_sec
: Duration of the last RDB save operation in secondsrdb_current_bgsave_time_sec
: Duration of the on-going RDB save operation if anyaof_enabled
: Flag indicating AOF logging is activatedaof_rewrite_in_progress
: Flag indicating a AOF rewrite operation is on-goingaof_rewrite_scheduled
: Flag indicating an AOF rewrite operation will be scheduled once the on-going RDB save is complete.aof_last_rewrite_time_sec
: Duration of the last AOF rewrite operation in secondsaof_current_rewrite_time_sec
: Duration of the on-going AOF rewrite operation if anyaof_last_bgrewrite_status
: Status of the last AOF rewrite operationchanges_since_last_save
refers to the number of operations that produced some kind of changes in the dataset since the last time either SAVE or BGSAVE was called.
If AOF is activated, these additional fields will be added:
aof_current_size
: AOF current file sizeaof_base_size
: AOF file size on latest startup or rewriteaof_pending_rewrite
: Flag indicating an AOF rewrite operation will be scheduled once the on-going RDB save is complete.aof_buffer_length
: Size of the AOF bufferaof_rewrite_buffer_length
: Size of the AOF rewrite bufferaof_pending_bio_fsync
: Number of fsync pending jobs in background I/O queueaof_delayed_fsync
: Delayed fsync counterIf a load operation is on-going, these additional fields will be added:
loading_start_time
: Epoch-based timestamp of the start of the load operationloading_total_bytes
: Total file sizeloading_loaded_bytes
: Number of bytes already loadedloading_loaded_perc
: Same value expressed as a percentageloading_eta_seconds
: ETA in seconds for the load to be completeHere is the meaning of all fields in the stats section:
total_connections_received
: Total number of connections accepted by the servertotal_commands_processed
: Total number of commands processed by the serverinstantaneous_ops_per_sec
: Number of commands processed per secondrejected_connections
: Number of connections rejected because of maxclients
limitexpired_keys
: Total number of key expiration eventsevicted_keys
: Number of evicted keys due to maxmemory
limitkeyspace_hits
: Number of successful lookup of keys in the main dictionarykeyspace_misses
: Number of failed lookup of keys in the main dictionarypubsub_channels
: Global number of pub/sub channels with client subscriptionspubsub_patterns
: Global number of pub/sub pattern with client subscriptionslatest_fork_usec
: Duration of the latest fork operation in microsecondsHere is the meaning of all fields in the replication section:
role
: Value is "master" if the instance is slave of no one, or "slave" if the instance is enslaved to a master. Note that a slave can be master of another slave (daisy chaining).If the instance is a slave, these additional fields are provided:
master_host
: Host or IP address of the mastermaster_port
: Master listening TCP portmaster_link_status
: Status of the link (up/down)master_last_io_seconds_ago
: Number of seconds since the last interaction with mastermaster_sync_in_progress
: Indicate the master is syncing to the slaveIf a SYNC operation is on-going, these additional fields are provided:
master_sync_left_bytes
: Number of bytes left before syncing is completemaster_sync_last_io_seconds_ago
: Number of seconds since last transfer I/O during a SYNC operationIf the link between master and slave is down, an additional field is provided:
master_link_down_since_seconds
: Number of seconds since the link is downThe following field is always provided:
connected_slaves
: Number of connected slavesFor each slave, the following line is added:
slaveXXX
: id, IP address, port, stateHere is the meaning of all fields in the cpu section:
used_cpu_sys
: System CPU consumed by the Redis serverused_cpu_user
:User CPU consumed by the Redis serverused_cpu_sys_children
: System CPU consumed by the background processesused_cpu_user_children
: User CPU consumed by the background processesThe commandstats section provides statistics based on the command type, including the number of calls, the total CPU time consumed by these commands, and the average CPU consumed per command execution.
For each command type, the following line is added:
cmdstat_XXX
: calls=XXX,usec=XXX,usec_per_call=XXX
The cluster section currently only contains a unique field:
cluster_enabled
: Indicate Redis cluster is enabledThe keyspace section provides statistics on the main dictionary of each database. The statistics are the number of keys, and the number of keys with an expiration.
For each database, the following line is added:
dbXXX
: keys=XXX,expires=XXX
© 2009–2017 Salvatore Sanfilippo
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
https://redis.io/commands/info