redis_exporter服务安装并启动
1、介绍
Redis Exporter 是 Prometheus 官方推荐的 Redis 监控数据导出工具,用于将 Redis 实例的性能指标暴露为 Prometheus 可抓取的格式。
2、下载redis_exporter
3、解压缩文件
执行命令tar -xzf redis_exporter-v1.69.0.linux-amd64.tar.gz
4、启动redis_exporter服务
nohup ./redis_exporter -redis.addr redis://63.1.22.121:6379 -redis.password xxxxxx --web.listen-address=":9121" > nohup.log 2>&1 &