###########################
redis.conf配置文件的慢查询配置如下:
################################## SLOW LOG ################################### # 指定执行时间超过多少微秒(1秒等于1000 000微秒)的命令请求会被记录到日志上,慢查询的阈值 slowlog-log-slower-than 1000 # 指定服务器最多保存多少条慢查询日志 # 当服务器存储的慢查询日志数量等于slowlog-max-len选项的值时,服务器在添加一条新的慢查询日志之前,会先将最旧的一条慢查询日志删除 slowlog-max-len 1280 #命令介绍: SLOWLOG GET:用来查看服务器所保存的慢查询日志;SLOWLOG LEN:查询慢查询日志的数量;SLOWLOG RESET:用于清空所有慢查询日志
查看慢查询:
[[email protected] cdrom]$ ./redis_7001/bin/redis-cli -c -a jJAV0kTokNb8iZvwfqniCxmFZEsbOH5n -p 7007 -h 192.168.31.33 Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe. 192.168.31.33:7007> slowlog len (integer) 12 192.168.31.33:7007> slowlog get 2 1) 1) (integer) 11 2) (integer) 1676553036 3) (integer) 1586 4) 1) "COMMAND" 2) "DOCS" 5) "192.168.31.33:59028" 6) "" 2) 1) (integer) 10 2) (integer) 1676553005 3) (integer) 1506 4) 1) "COMMAND" 2) "DOCS" 5) "192.168.31.33:53280" 6) "" 192.168.31.33:7007>
############################
标签:分析,31.33,slowlog,redis,192.168,查询,integer,日志 From: https://www.cnblogs.com/igoodful/p/17128358.html