参考:
https://www.prometheus.wang/exporter/use-promethues-monitor-redis.html
https://github.com/oliver006/redis_exporter
https://grafana.com/grafana/dashboards/763
https://github.com/oliver006/redis_exporter/blob/master/contrib/grafana_prometheus_redis_dashboard.json
https://hub.docker.com/r/oliver006/redis_exporter/
https://github.com/oliver006/redis_exporter/blob/master/contrib/k8s-redis-and-exporter-deployment.yaml
这里使用二进制部署启动Redis以及Redis Exporter,具体安装细节就不做重复了
mkdir /data/redis_exporter
sudo wget https://github.com/oliver006/redis_exporter/releases/download/v1.3.2/redis_exporter-v1.3.2.linux-amd64.tar.gz
tar -xvf redis_exporter-v1.3.2.linux-amd64.tar.gz
mv redis_exporter-v1.3.2.linux-amd64 /data/redis_exporter
wget https://grafana.com/api/dashboards/763/revisions/1/download
## 无密码
./redis_exporter redis//172.26.42.229:6379
## 有密码
./redis_exporter -redis.addr 172.26.42.229:6379 -redis.password 123456
cat > /etc/systemd/system/redis_exporter.service <<EOF
[Unit]
Description=redis_exporter
After=network.target
[Service]
Type=simple
User=prometheus
ExecStart=/data/redis_exporter/redis_exporter -redis.addr 172.26.42.229:6379 -redis.password 123456
Restart=on-failure
[Install]
WantedBy=multi-user.target
EOF
- job_name: redis
static_configs:
- targets: ['172.26.42.229:9121']
labels:
instance: redis120
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。