监控

语法
MONITOR
可用版本
1.0.0
时间复杂度
ACL 类别
@admin, @slow, @dangerous,

MONITOR 是一个调试命令,它将流式传输 Redis 服务器处理的每个命令。它可以帮助您了解数据库中发生了什么。此命令可以通过 redis-clitelnet 使用。

查看服务器处理的所有请求的能力有助于发现应用程序中的错误,无论 Redis 用作数据库还是分布式缓存系统。

$ redis-cli monitor
1339518083.107412 [0 127.0.0.1:60866] "keys" "*"
1339518087.877697 [0 127.0.0.1:60866] "dbsize"
1339518090.420270 [0 127.0.0.1:60866] "set" "x" "6"
1339518096.506257 [0 127.0.0.1:60866] "get" "x"
1339518099.363765 [0 127.0.0.1:60866] "eval" "return redis.call('set','x','7')" "0"
1339518100.363799 [0 lua] "set" "x" "7"
1339518100.544926 [0 127.0.0.1:60866] "del" "x"

使用 SIGINT (Ctrl-C) 停止通过 redis-cli 运行的 MONITOR 流。

$ telnet localhost 6379
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
MONITOR
+OK
+1339518083.107412 [0 127.0.0.1:60866] "keys" "*"
+1339518087.877697 [0 127.0.0.1:60866] "dbsize"
+1339518090.420270 [0 127.0.0.1:60866] "set" "x" "6"
+1339518096.506257 [0 127.0.0.1:60866] "get" "x"
+1339518099.363765 [0 127.0.0.1:60866] "del" "x"
+1339518100.544926 [0 127.0.0.1:60866] "get" "x"
QUIT
+OK
Connection closed by foreign host.

手动发出 QUITRESET 命令以停止通过 telnet 运行的 MONITOR 流。

MONITOR 未记录的命令

出于安全考虑,MONITOR 输出不会记录任何管理命令,并且命令 AUTH 中的敏感数据将被屏蔽。

此外,命令 QUIT 也不会被记录。

运行 MONITOR 的成本

由于 MONITOR 流式传输 **所有** 命令,因此其使用会带来一定成本。以下(完全非科学的)基准测试数字说明了运行 MONITOR 的成本。

**不** 运行 MONITOR 的基准测试结果

$ src/redis-benchmark -c 10 -n 100000 -q
PING_INLINE: 101936.80 requests per second
PING_BULK: 102880.66 requests per second
SET: 95419.85 requests per second
GET: 104275.29 requests per second
INCR: 93283.58 requests per second

运行 MONITOR 的基准测试结果 (redis-cli monitor > /dev/null)

$ src/redis-benchmark -c 10 -n 100000 -q
PING_INLINE: 58479.53 requests per second
PING_BULK: 59136.61 requests per second
SET: 41823.50 requests per second
GET: 45330.91 requests per second
INCR: 41771.09 requests per second

在这种情况下,运行单个 MONITOR 客户端可以使吞吐量降低 50% 以上。运行更多 MONITOR 客户端将进一步降低吞吐量。

行为变更历史记录

RESP2/RESP3 响应

非标准返回值。无限流式传输接收到的命令。
RATE THIS PAGE
Back to top ↑