xbworkspace 2019-07-01
Prometheus Exporter for Redis Metrics. Supports Redis 2.x, 3.x, 4.x, and 5.x
Prometheus 监控 Redis2019年03月23日 - 初稿
阅读原文 - https://wsgzao.github.io/post...
扩展阅读
redis_exporter - https://github.com/oliver006/...
# 下载redis_exporter https://github.com/oliver006/redis_exporter/releases cd /tmp wget https://github.com/oliver006/redis_exporter/releases/download/v0.30.0/redis_exporter-v0.30.0.linux-amd64.tar.gz tar xf redis_exporter-v0.30.0.linux-amd64.tar.gz # 后台启动redis_exporter nohup ./redis_exporter -redis.addr redis://<IP>:<PORT> & # iptables rule for Prometheus Redis -A INPUT -s xxx -p tcp --dport 9121 -j ACCEPT # 测试URL获取metrics curl http://<IP>:9121/metrics
https://grafana.com/dashboard...