發表文章

目前顯示的是 3月, 2024的文章

Prometheus + Grafana

圖片
  Prometheus (1) 安裝 Prometheus sudo apt- get install prometheus (2) 檢查是否有啟動 systemctl status prometheus (3) Prometheus 的設定檔如下 nano /etc/ prometheus /prometheus.yml (4) 允許 9100、9090 ufw allow 9100 ufw allow 9090 (5) 查看 Node-exporter 是否有啟動 systemctl status prometheus- node -exporter (6) 可前往網站看是否正常運作 http://192.168.1.244:9090/classic/graph http://192.168.1.244:9100/metrics (7) Prometheus 重啟 systemctl restart prometheus Grafana (1) 增加 Grafana 的 APT sudo apt-get install -y software-properties-common sudo add-apt-repository "deb https://packages.grafana.com/oss/deb stable main" (2) 增加 Grafana 的 GPG 密鑰以驗證下載包的完整性 wget - q -O - https: //packages.grafana.com/gpg.key | sudo apt-key add - (3) 更新 APT 軟體包索引並安裝 Grafana sudo apt- get update sudo apt- get install grafana (4) 啟動 Grafana sudo systemctl start grafana- server (5) 系統重啟後,自動啟動 sudo systemctl enable grafana-server (6) 檢查是否有啟動成功 systemctl status grafana- server (7) 允許 3000 ufw allow 3000 (8) 前往 Grafana,預設帳、密是 admin http://192.1...