首頁  >  文章  >  資料庫  >  介紹Redis效能監控

介紹Redis效能監控

coldplay.xixi
coldplay.xixi轉載
2021-03-22 10:50:351657瀏覽

介紹Redis效能監控

redis_exporter prometheus grafana監控Redis服務指標

    • ##1.redis_exporter
    • 2 .prometheus
    • 3.grafana
#本文使用redis_exporter prometheus grafana 實現對Redis服務進行監控,原因:成本低,人工幹預少,直接下載對應的組件,只需添加配置即可互相通信,可視化指標也比較全面。

推薦(免費):redis

#下面是在安裝了redis的Linux機器上

1、redis_exporter

下載程式壓縮檔案

wget https://github.com/oliver006/redis_exporter/releases/download/v0.28.0/redis_exporter-v0.28.0.linux-amd64.tar.gz
解壓縮

tar zxf redis_exporter-v0.28.0.linux-amd64.tar.gz
cd進入目錄

cd redis_exporter-v1.15.0.linux-amd64
#直接執行redis_exporter程式加&代表在背景執行, /redis_exporter &指令預設存取本機的localhost:6379,需要指定其他機器的redis使用./redis_exporter ip:port &

./redis_exporter &

#2、prometheus

#第一步還是老樣子下載檔,解壓縮檔(v2.7.1)可以修改成需要安裝的版本,可以點選https://github.com/prometheus/prometheus/releases進去找對應的版本號

wget https://github.com/prometheus/prometheus/releases/download/v2.7.1/prometheus-2.7.1.linux-amd64.tar.gz
tar zxf prometheus-2.7.1.linux-amd64.tar.gz
cd進入目錄會發現一個prometheus.yml的設定檔,這個設定檔對應的每一個服務的服務名稱,監控位址和連接埠。

vim prometheus.yml
開啟設定檔新增redis_exporter通訊的設定

   - job_name: 'prometheus'
     static_configs:
     - targets: ['localhost:9090'] #程序在本机开通的端口号 默认9090
  - job_name: 'redis'
    static_configs:
    - targets:
      - "IP:9121" #(安装redis_exporter的IP)
執行ps:查看有沒有行程佔用9090埠

./prometheus &
http://ip:9090/targets 檢視是否成功


介紹Redis效能監控

3、grafana

廢話不多說

  wget https://dl.grafana.com/oss/release/grafana-6.0.0-beta1.linux-amd64.tar.gz
tar zxf grafana-6.0.0-beta1.linux-amd64.tar.gz
cd grafana-6.0.0-beta1
./grafana-server start
啟動後: http://ip:300 默認使用者:admin,密碼:admin 然後在左邊找到 data sources


介紹Redis效能監控

設定Url對應你的程式位址


介紹Redis效能監控

最後一步! 下載json模板導入進來

https://grafana.com/api/dashboards/763/revisions/1/download

介紹Redis效能監控 上傳

## 這裡可以查看你設定那些服務監控介紹Redis效能監控

介紹Redis效能監控監控頁面

介紹Redis效能監控

以上是介紹Redis效能監控的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除