在Redis的info命令中,stats部分包含以下信息:
- total_connections_received: Redis服务器接收的连接总数
- total_commands_processed: Redis服务器处理的命令总数
- instantaneous_ops_per_sec: 当前每秒执行的命令数
- total_net_input_bytes: Redis服务器接收的总字节数
- total_net_output_bytes: Redis服务器发送的总字节数
- instantaneous_input_kbps: 当前每秒接收的网络流量(KB)
- instantaneous_output_kbps: 当前每秒发送的网络流量(KB)
- rejected_connections: Redis服务器拒绝的连接数
- sync_full: Redis服务器接收到的完整复制请求的数量
- sync_partial_ok: Redis服务器接收到的部分复制请求的数量
- sync_partial_err: Redis服务器接收到的部分复制请求失败的数量
- expired_keys: Redis服务器过期的key数量
- evicted_keys: Redis服务器驱逐的key数量
- keyspace_hits: Redis命中key空间的次数
- keyspace_misses: Redis未命中key空间的次数
这些信息可以帮助用户监控Redis服务器的性能和运行状态。