一、安装redis_exporter
1、安装
tar zxf redis_exporter-v1.9.0.linux-amd64.tar.gz -C /data/
2、启动redis_exporter
nohup ./redis_exporter -web.listen-address :9121 -redis.addr 192.168.84.129:6379 -redis.password 123456 &
二、配置使用
1、添加prometheus配置
vim /data/prometheus-2.19.1.linux-amd64/prometheus.yml
- job_name: 'Redis'
static_configs:
- targets: ['192.168.84.129:9121']
2、重启prometheus
kill pid
nohup ./prometheus --config.file=prometheus.yml &