likes
comments
collection
share

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

作者站长头像
站长
· 阅读数 2

前置准备

因为下载需要用到 homebrew,所以请提前安装好 homebrew。并且设置好对应的镜像源,否则下载太慢,以下是我的镜像源配置。

以下命令在安装好 homebrew 后执行即可。

git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/bottles' >> ~/.bash_profile

1、安装 node_exporter

(1)执行以下命令安装

brew install node_exporter

(2)执行以下命令启动

brew services start node_exporter

tip:停止进程命令 brew services stop node_exporter

(3)验证是否成功启动

访问网址:http://localhost:9100/metrics

如果成功则会出现以下界面:

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

2、安装 prometheus

(1)执行以下命令安装

brew install prometheus

(2)执行以下命令启动

brew services start prometheus 

tip:停止进程命令 brew services stop prometheus

(3)验证是否成功启动

访问网址:http://localhost:9090/graph

如果成功则会出现以下界面:

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

3、prometheus 关联 node_exporter

现在 prometheus 和 node_exporter 的进程都启动起来了,但是目前他们现在还没有关联上,需要在 prometheus 的配置文件中配置 node_exporter。

(1)新建 prometheus.yml

文件内容为:

global:
  scrape_interval: 15s
 
scrape_configs:
  - job_name: "prometheus"
    static_configs:
    - targets: ["localhost:9090"]
  - job_name: "linux-node-cluster"
    static_configs:
    - targets: ["localhost:9100"]

linux-node-cluster 就表示 node_exporter。

(2)以配置文件方式启动 prometheus

prometheus --config.file=/Users/Desktop/Java/monitor/promethus/install/prometheus.yml

其中--config.file 后面的是 prometheus.yml 的具体文件路径,以自己的为准。

(3)验证是否成功关联

访问网址:http://localhost:9090/targets

如果出现了以下界面则代表关联成功

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

4、安装 Grafana

(1)执行以下命令安装

brew install grafana

(2)执行以下命令启动

brew services start grafana

(3)验证是否成功启动

访问网址:http://localhost:3000/login

如果出现了以下界面则代表启动成功,用户名密码默认都是:admin。

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

5、使用 Grafana 展示 Prometheus 的数据

(1)

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

(2)

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

(3)

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

(4)

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

(5)

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

(6)

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

(7)

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控

6、最终效果图

Prometheus + node_exporter + Grafana 搭建机器相关指标性能监控