51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Prometheus监控Redis

一、Reids介绍

REmote DIctionary Server(Redis) 是一个由Salvatore Sanfilippo写的key-value存储系统。

Redis是一个开源的使用ANSI C语言编写、遵守BSD协议、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。

它通常被称为数据结构服务器,因为值(value)可以是 字符串(String), 哈希(Map), 列表(list), 集合(sets) 和 有序集合(sorted sets)等类型。

二、Reids应用

目前平台Redis具体使用到以下三个方面:

  • 数据缓存,大并发下用于快读读取数据
  • 消息队列,主要用于日志队列传输、异步任务
  • session存储,主要用于平台各个项目的用户信息存储,适用于负载均衡集群环境

三、Redis_exporter安装

1、redis_exporter安装

下载地址:https://github.com/oliver006/redis_exporter/releases

[root@localhost ~]# wget https://github.com/oliver006/redis_exporter/releases/download/v1.5.3/redis_exporter-v1.5.3.linux-amd64.tar.gz

2、解压redis_exporter

[root@localhost ~]# tar xf redis_exporter-v1.5.3.linux-amd64.tar.gz

[root@localhost ~]# mv redis_exporter-v1.5.3.linux-amd64 /usr/local/redis_exporter

3、创建redis_exporter启动脚本

[root@localhost ~]# vim /etc/systemd/system/redis_exporter.service

[Unit]
Description=redis_exporter
After=network.target

\[Service\]
Restart=on-failure
ExecStart=/usr/local/redis_exporter/redis_exporter -redis.addr 127.0.0.1:6379 -redis.password 123456


\[Install\]
WantedBy=multi-user.target

-redis.addr 127.0.0.1:6379 # Redis连接IP+端口

-redis.password 123456 # Redis连接密码

4、启动redis_exporter

[root@localhost ~]# systemctl daemon-reload

[root@localhost ~]# systemctl start redis_exporter

5、浏览器访问本机IP:9121/metrics可以看到redis的指标

Prometheus监控Redis-图片1

6、修改prometheus配置文件,scrape_configs下面添加

[root@localhost ~]# vim /usr/local/prometheus/prometheus.yml

- job_name: 'redis'
    static_configs:
    - targets: ['localhost:9121']

7、重启Prometheus服务

[root@localhost ~]# systemctl restart prometheus

8、访问Prometheus WEB界面可以看到redis相关指标

Prometheus监控Redis-图片2

9、查看Targets

四、Grafana配置

1、Granfana导入Redis监控图表

推荐图标ID:https://grafana.com/dashboards/763

2、输入图标ID

3、输入导入图标ID等待3秒弹出如下,修改后导入即可

4、监控展示


继续阅读

历史上的今天

4 月
21

赞(0)
未经允许不得转载:工具盒子 » Prometheus监控Redis