首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

redis监控展示

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

有疑问的同学,欢迎留言讨论哈

  • 发表于:
  • 原文链接https://kuaibao.qq.com/s/20180526G01MZS00?refer=cp_1026
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券