您的当前位置:首页正文

Redis精通系列——info 指令用法

2024-11-08 来源:个人技术集锦


1、简介


Redis提供了info指令,它会返回关于Redis服务器的各种信息和统计数值。在使用Redis时,时常会遇到一些疑难杂症需要我们去排查,这个时候我们可以通过info指令来获取Redis的运行状态,然后进行问题的排查。

通过给定可选的参数 section ,可以让命令只返回某一部分的信息:

它也可以采取以下值:

  • all: 返回所有信息

  • default: 值返回默认设置的信息

如果没有使用任何参数时,默认为default,返回所有的信息。

2、info/info all


返回Redis服务所有的信息

# Server

redis_version:6.2.4

redis_git_sha1:00000000

redis_git_dirty:0

redis_build_id:fa652e749408dcfd

redis_mode:standalone

os:Linux 3.10.0-327.el7.x86_64 x86_64

arch_bits:64

multiplexing_api:epoll

atomicvar_api:c11-builtin

gcc_version:9.3.1

process_id:4617

process_supervised:no

run_id:9662797d01b55345cd6cabad38d102e27db19e66

tcp_port:6379

server_time_usec:1632494557942546

uptime_in_seconds:4

uptime_in_days:0

hz:10

configured_hz:10

lru_clock:5104605

executable:/usr/local/soft/redis-6.2.4/src/redis-server

config_file:/usr/local/soft/redis-6.2.4/redis.conf

io_threads_active:0

# Clients

connected_clients:1

cluster_connections:0

maxclients:10000

client_recent_max_input_buffer:16

client_recent_max_output_buffer:0

blocked_clients:0

tracking_clients:0

clients_in_timeout_table:0

# Memory

used_memory:874728

used_memory_human:854.23K

used_memory_rss:10207232

used_memory_rss_human:9.73M

used_memory_peak:932800

used_memory_peak_human:910.94K

used_memory_peak_perc:93.77%

used_memory_overhead:830808

used_memory_startup:810168

used_memory_dataset:43920

used_memory_dataset_perc:68.03%

allocator_allocated:1036080

allocator_active:1380352

allocator_resident:3932160

total_system_memory:1913507840

total_system_memory_human:1.78G

used_memory_lua:37888

used_memory_lua_human:37.00K

used_memory_scripts:0

used_memory_scripts_human:0B

number_of_cached_scripts:0

maxmemory:104857600

maxmemory_human:100.00M

maxmemory_policy:volatile-lfu

allocator_frag_ratio:1.33

allocator_frag_bytes:344272

all

显示全文