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、最终效果图

相关推荐
木易 士心1 分钟前
Spring AI 核心架构解析:构建企业级 AI 应用的 Java 新范式
java·spring
61900833612 分钟前
linux 安装jdk
java·linux·运维
懂得节能嘛.14 分钟前
【动态配置中心】Java+Redis构建动态配置中心
java·开发语言·redis
专注于大数据技术栈16 分钟前
Java中JDK、JRE、JVM概念
java·开发语言·jvm
YuanlongWang19 分钟前
C# 基础——值类型与引用类型的本质区别
java·jvm·c#
Kay_Liang44 分钟前
大语言模型如何精准调用函数—— Function Calling 系统笔记
java·大数据·spring boot·笔记·ai·langchain·tools
自由的疯1 小时前
Java 如何学习Docker
java·后端·架构
自由的疯1 小时前
Java Docker本地部署
java·后端·架构
007php0071 小时前
猿辅导Java面试真实经历与深度总结(二)
java·开发语言·python·计算机网络·面试·职场和发展·golang
摇滚侠1 小时前
Spring Boot 3零基础教程,WEB 开发 内容协商机制 笔记34
java·spring boot·笔记·缓存