Redis监控:Grafana + Prometheus + redis_exporter & Grafana + Redis 监控 Redis
为了在Grafana中监控Redis,你需要部署redis_exporter
,Prometheus
和Grafana
。以下是部署这些组件的步骤和示例配置:
- 安装
redis_exporter
:
wget https://github.com/oliver006/redis_exporter/releases/download/v0.27.0/redis_exporter.linux-amd64
chmod +x redis_exporter.linux-amd64
mv redis_exporter.linux-amd64 /usr/local/bin/redis_exporter
- 运行
redis_exporter
:
redis_exporter -redis.addr=<redis-host> -redis.password=<redis-password>
- 安装
Prometheus
:
# 下载并解压Prometheus
wget https://github.com/prometheus/prometheus/releases/download/v2.15.2/prometheus-2.15.2.linux-amd64.tar.gz
tar xvfz prometheus-2.15.2.linux-amd64.tar.gz
# 移动Prometheus到/usr/local/bin/
mv prometheus-2.15.2.linux-amd64/prometheus /usr/local/bin/
mv prometheus-2.15.2.linux-amd64/promtool /usr/local/bin/
- 配置
Prometheus
:
编辑prometheus.yml
文件,添加redis_exporter
作为一个target:
scrape_configs:
- job_name: 'redis'
static_configs:
- targets: ['<redis_exporter-host>:9121']
- 运行
Prometheus
:
prometheus --config.file=prometheus.yml
- 安装
Grafana
:
# 下载并解压Grafana
wget https://dl.grafana.com/oss/release/grafana-6.7.2.linux-amd64.tar.gz
tar -zxvf grafana-6.7.2.linux-amd64.tar.gz
# 移动Grafana到/usr/local/bin/
mv grafana-6.7.2.linux-amd64 /usr/local/bin/grafana-server
- 运行
Grafana
:
grafana-server
- 配置
Grafana
数据源和仪表盘:
- 在Grafana的Web界面中,添加Prometheus数据源。
- 导入Redis监控仪表盘,可以使用以下Prometheus指标仪表盘ID:
4701
。
完成以上步骤后,你将能够在Grafana看到Redis的监控仪表盘。
注意:确保你的Redis实例配置了正确的访问权限,并且redis_exporter
、Prometheus
和Grafana
服务能够通过网络访问。
评论已关闭