Promethues监控redis
Posted 神游坐忘峰大话IT
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Promethues监控redis相关的知识,希望对你有一定的参考价值。
直接上流程
一、安装redis_exporter
官网:https://github.com/oliver006/redis_exporter/releases/
wget https://github.com/oliver006/redis_exporter/releases/download/v1.6.1/redis_exporter-v1.6.1.linux-amd64.tar.gz
tar -zxf redis_exporter-v1.6.1.linux-amd64.tar.gz
mv redis_exporter-v1.6.1.linux-amd64 /usr/local/
二、配置redis_exporter service 文件
vi /etc/systemd/system/redis_exporter.service
[Unit]Description=redis_exporterAfter=network.target[Service]Restart=on-failureExecStart=/usr/local/redis_exporter-v1.6.1.linux-amd64/redis_exporter -redis.addr 192.168.1.111:6379 -redis.password 123456 [Install]WantedBy=multi-user.target
备注:如果不需要密码,后面的参数不用带
之后:systemctl daemon-reloadsystemctl start redis_exportersystemctl status redis_exporter
ss -tunlp|grep redis_exporter
默认端口9121
http://192.168.1.181:9121/metrics
四、添加Promethues监控
- job_name: 'redis-jieyi-dev'
scrape_interval: 5s
static_configs:
- targets: ['192.168.1.181:9121']
五、grafana配置
https://grafana.com/dashboards/763/revisions
763
导入即可
以上是关于Promethues监控redis的主要内容,如果未能解决你的问题,请参考以下文章