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

前置准备

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

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

cmake 复制代码
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)执行以下命令安装

java 复制代码
brew install node_exporter

(2)执行以下命令启动

java 复制代码
brew services start node_exporter

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

(3)验证是否成功启动

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

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

2、安装 prometheus

(1)执行以下命令安装

java 复制代码
brew install prometheus

(2)执行以下命令启动

java 复制代码
brew services start prometheus 

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

(3)验证是否成功启动

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

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

3、prometheus 关联 node_exporter

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

(1)新建 prometheus.yml

文件内容为:

yaml 复制代码
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

cmake 复制代码
prometheus --config.file=/Users/Desktop/Java/monitor/promethus/install/prometheus.yml

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

(3)验证是否成功关联

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

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

4、安装 Grafana

(1)执行以下命令安装

java 复制代码
brew install grafana

(2)执行以下命令启动

java 复制代码
brew services start grafana

(3)验证是否成功启动

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

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

5、使用 Grafana 展示 Prometheus 的数据

(1)

(2)

(3)

(4)

(5)

(6)

(7)

6、最终效果图

相关推荐
sky_ph16 分钟前
JAVA-GC浅析(二)G1(Garbage First)回收器
java·后端
IDRSolutions_CN38 分钟前
PDF 转 HTML5 —— HTML5 填充图形不支持 Even-Odd 奇偶规则?(第二部分)
java·经验分享·pdf·软件工程·团队开发
hello早上好42 分钟前
Spring不同类型的ApplicationContext的创建方式
java·后端·架构
HelloWord~2 小时前
SpringSecurity+vue通用权限系统2
java·vue.js
让我上个超影吧2 小时前
黑马点评【基于redis实现共享session登录】
java·redis
BillKu3 小时前
Java + Spring Boot + Mybatis 插入数据后,获取自增 id 的方法
java·tomcat·mybatis
全栈凯哥3 小时前
Java详解LeetCode 热题 100(26):LeetCode 142. 环形链表 II(Linked List Cycle II)详解
java·算法·leetcode·链表
chxii3 小时前
12.7Swing控件6 JList
java
全栈凯哥3 小时前
Java详解LeetCode 热题 100(27):LeetCode 21. 合并两个有序链表(Merge Two Sorted Lists)详解
java·算法·leetcode·链表
YuTaoShao3 小时前
Java八股文——集合「List篇」
java·开发语言·list