监控和方式
工具
- Cloud Insight Redis
- Prometheus
- Redis-stat
- Redis-faina
- RedisLive
- zabbix
命令
- benchmark
- redis cli
- monitor
- slowlog
benchmark
- 命令
redis-benchmark [-h ] [-p ] [-c ] [-n <request>] [-k ]
- 范例1
redis-benchmark
说明:50个连接,100000次请求对应的性能
- 范例2
redis-benchmark -c 100 -n 5000
说明:100个连接,5000次请求对应的性能
monitor
- 命令
monitor
打印服务器调试信息
slowlog
- 命令
slowlog [operator]
- get:获取慢查询日志
- len:获取慢查询日志条目数
- reset:重置慢查询日志
- 相关配置
slowlog-log-slower-than 1000 #设置慢查询的时间下线,单位:微秒
slowlog-max-len 100 #设置慢查询命令对应的日志显示长度,单位:命令数