redis集群环境搭建:https://www.cnblogs.com/uncleyong/p/13196936.html
在需要监控的redis上安装 node_exporter和 redis_exporter
下载
https://github.com/oliver006/redis_exporter/releases
安装及配置
tar -zxvf redis_exporter-v1.8.0.linux-amd64.tar.gz -C /usr/local/
启动服务:
./redis_exporter -redis.addr localhost:7001 -redis.password test123
集群
在prometheus.yml中加入job
单实例(单机)
在prometheus.yml中加入job
- job_name: 'redis' static_configs: - targets: ['localhost:9121']
4074