redis监控展示
1
wget https://github.com/prometheus/prometheus/releases/download/v2.1.0/prometheus-2.1.0.linux-amd64.tar.gz
2
tar -zxvf prometheus-2.1.0.linux-amd64.tar.gz --strip-components=1
3
4
在当前解压目录下,执行如下命令:
5
nohup ./prometheus --config.file=prometheus.yml &
6
7
web界面 http://192.168.0.15:9090/graph
grafana安装,前面已经有讲过,现在我们只要配置即可
在redis服务器安装node_exporter和redis_exporterredis_exporter安装
1
wget https://github.com/oliver006/redis_exporter/releases/download/v0.15.0/redis_exporter-v0.15.0.linux-amd64.tar.gz
2
tar -zxvf redis_exporter-v0.15.0.linux-amd64.tar.gz --strip-components=1
3
wget https://github.com/prometheus/node_exporter/releases/download/v0.15.2/node_exporter-0.15.2.linux-amd64.tar.gz
4
tar -zxvf redis_exporter-v0.15.2.linux-amd64.tar.gz --strip-components=1
1
启动 node_exporter:
2
./node_exporter &
3
4
启动redis_exporter:
5
6
有密码
7
./redis_exporter -redis.addr 192.168.10.78:6379 -redis.password wangyu &
8
9
无密码:
10
11
./redis_exporter redis//192.168.10.78:6379 &
12
13
prometheus.yml加入redis节点,然后重启prometheus:
14
- job_name: redis_exporter
15
static_configs:
16
- targets: ['192.168.10.78:9121']
17
18
19
配置UP成功状态
导入json模板
下载grafana的redis的prometheus-redis_rev1.json模板
wget https://grafana.com/api/dashboards/763/revisions/1/download
在grafana中导入json模板
服务端启动redis
有疑问的同学,欢迎留言讨论哈
领取专属 10元无门槛券
私享最新 技术干货