首页 > 其他 > 详细

Grafana+Prometheus:监控Redis

时间:2020-09-12 16:26:22      阅读:64      评论:0      收藏:0      [点我收藏+]

 

在上一节的基础上:Grafana+Prometheus:容器化运行Grafana+Prometheus

1、增加redis exporter

#下载镜像
docker pull oliver006/redis_exporter
#运行
docker run -d --name redis_exporter -p 9121:9121 oliver006/redis_exporter --redis.addr redis://公网ip:6379

2、更改prometheus的配置文件prometheus.yml,并重新启动一个容器运行

global 
  scrape_interval: 60s evaluation_interval: 60s scrape_configs:
- job_name: prometheus static_configs: - targets: [localhost:9090] labels: instance: prometheus - job_name: linux static_configs: - targets: [公网ip:9100] labels: instance: localhost - job_name: redis static_configs: - targets: [公网ip:9121] labels: instance: redis

3.redis监控模板可以选763

Grafana+Prometheus:监控Redis

原文:https://www.cnblogs.com/-wenli/p/13656583.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!