Reids介绍
REmote DIctionary Server(Redis) 是一个由Salvatore Sanfilippo写的key-value存储系统。
Redis是一个开源的使用ANSI C语言编写、遵守BSD协议、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。文章源自小柒网-https://www.yangxingzhen.cn/6861.html
它通常被称为数据结构服务器,因为值(value)可以是 字符串(String), 哈希(Map), 列表(list), 集合(sets) 和 有序集合(sorted sets)等类型。文章源自小柒网-https://www.yangxingzhen.cn/6861.html
Reids应用
目前平台Redis具体使用到以下三个方面:文章源自小柒网-https://www.yangxingzhen.cn/6861.html
- 数据缓存,大并发下用于快读读取数据
- 消息队列,主要用于日志队列传输、异步任务
- session存储,主要用于平台各个项目的用户信息存储,适用于负载均衡集群环境
一、Redis_exporter安装
1、redis_exporter安装文章源自小柒网-https://www.yangxingzhen.cn/6861.html
下载地址:https://github.com/oliver006/redis_exporter/releases文章源自小柒网-https://www.yangxingzhen.cn/6861.html
文章源自小柒网-https://www.yangxingzhen.cn/6861.html
[root@localhost ~]# wget https://github.com/oliver006/redis_exporter/releases/download/v1.5.3/redis_exporter-v1.5.3.linux-amd64.tar.gz文章源自小柒网-https://www.yangxingzhen.cn/6861.html
2、解压redis_exporter文章源自小柒网-https://www.yangxingzhen.cn/6861.html
[root@localhost ~]# tar xf redis_exporter-v1.5.3.linux-amd64.tar.gz文章源自小柒网-https://www.yangxingzhen.cn/6861.html
[root@localhost ~]# mv redis_exporter-v1.5.3.linux-amd64 /usr/local/redis_exporter文章源自小柒网-https://www.yangxingzhen.cn/6861.html
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的指标
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相关指标
9、查看Targets
二、Grafana配置
1、Granfana导入Redis监控图表
推荐图标ID:https://grafana.com/dashboards/763
2、输入图标ID
3、输入导入图标ID等待3秒弹出如下,修改后导入即可
4、监控展示
若文章图片、下载链接等信息出错,请在评论区留言反馈,博主将第一时间更新!如本文“对您有用”,欢迎随意打赏,谢谢!
评论