Prometheus+Grafana监控Linux主机

1、安装Prometheus

1.1 、下载Prometheus

下载网址

https://github.com/prometheus/prometheus/releases

选择需要的版本

wget https://github.com/prometheus/prometheus/releases/download/v2.53.0/prometheus-2.53.0.linux-amd64.tar.gz

1.2、安装Prometheus软件

1.2.1、创建用户组

groupadd prometheus
useradd -g prometheus -m -s /sbin/nologin prometheus

1.2.2、解压配置

tar -zxvf prometheus-2.53.0.linux-amd64.tar.gz
mv prometheus-2.53.0.linux-amd64 /usr/local/prometheus
sed -i 's/localhost/ 172.25.0.166/g' /usr/local/prometheus/prometheus.yml

1.2.3、将Prometheus添加至系统环境变量

vim /etc/profile
export PROMETHEUS_HOME=/usr/local/prometheus
PATH=$PATH:$PROMETHEUS_HOME
export PATH

重载系统环境变量文件

source /etc/profile

1.2.4、查看Prometheus的版本信息

prometheus --version	

1.2.5、创建数据目录

mkdir /usr/local/prometheus/data/

1.2.6、权限修改

chown -R prometheus.prometheus /usr/local/prometheus

1.2.7、检查并加载配置文件

cd /usr/local/prometheus/
./promtool check config prometheus.yml

1.2.8、创建systemd服务

cat <<EOF > /usr/lib/systemd/system/prometheus.service
[Unit]
Description=prometheus
After=network.target
[Service]
Type=simple
User=prometheus
ExecStart=/usr/local/prometheus/prometheus --config.file=/usr/local/prometheus/prometheus.yml --storage.tsdb.path=/usr/local/prometheus/data/ --web.enable-lifecycle --storage.tsdb.retention.time=30d
Restart=on-failure
[Install]
WantedBy=multi-user.target
EOF

参数注解:

  • config.file: 指定配置文件
  • web.enable-lifecycle: 支持通过http请求重载配置
  • storage.tsdb.path: 指定数据存储目录(默认当前目录的的data目录,若不存在则新建)
  • storage.tsdb.retention.time: 指定数据保留时间(默认15d)

1.2.9、启动服务

systemctl daemon-reload
systemctl start prometheus
systemctl status prometheus && systemctl enable prometheus

1.2.10、确认端口已经被监听

ss -lnput | grep 9090
tcp     LISTEN   0        512                    *:9090                *:*       users:(("prometheus",pid=20863,fd=7))

1.2.11、检查并加载配置文件

http://172.25.0.166:9090/metrics

在这里插入图片描述


2、监控Linux主机

2.1 、在Linux主机安装exporter插件

2.1.1、下载node_exporter

下载网址

https://github.com/prometheus/node_exporter/releases

下载需要的版本

wget https://github.com/prometheus/node_exporter/releases/download/v1.8.1/node_exporter-1.8.1.linux-amd64.tar.gz

2.1.2、创建用户组

groupadd prometheus
useradd -g prometheus -m -s /sbin/nologin prometheus

2.1.3、安装并解压

tar -zxvf node_exporter-1.8.1.linux-amd64.tar.gz -C /usr/local/
cd /usr/local/
mv node_exporter-1.8.1.linux-amd64  node_exporter

2.1.4、权限修改

chown -R prometheus.prometheus /usr/local/node_exporter

2.1.5、将node_exporter执行文件目录添加至环境变量

vim /etc/profile
export NODE_EXPORTER=/usr/local/node_exporter
export PATH=$PATH:$NODE_EXPORTER
export PATH

重载系统环境变量文件

source /etc/profile

2.1.6、创建systemd服务

cat > /usr/lib/systemd/system/node_exporter.service <<EOF[Unit]
Description=node_export
Documentation=https://github.com/prometheus/node_exporter
After=network.target
[Service]
Type=simple
User=prometheus
ExecStart=/usr/local/node_exporter/node_exporter
Restart=on-failure
[Install]
WantedBy=multi-user.target
EOF

2.1.7、启动服务

systemctl daemon-reload
systemctl enable node_exporter && systemctl start node_exporter
systemctl status node_exporter

2.1.8、确认端口已经被监听

ss -lnput | grep 9100
tcp     LISTEN   0        512                    *:9100                *:*       users:(("node_exporter",pid=21904,fd=3))

2.2、将Linux主机的exporter插件添加至Prometheus软件服务

修改Prometheus配置文件

vim /usr/local/prometheus/prometheus.yml
scrape_configs:
... - job_name: 'Linux Node'					# 添加监控项的名字static_configs:							- targets: ['172.25.0.166:9100']		# 监控主机的ip地址和端口号

重启prometheus服务

systemctl restart prometheus

2.3 、测试Prometheus的监控Linux主机状态

http://172.25.0.166:9090/targets?search=&scrapePool=Linux+Node

在这里插入图片描述

http://172.25.0.166:9100/metrics

在这里插入图片描述


3、使用Grafana展示数据

3.1、下载grafana

下载网址

https://grafana.com/grafana/download

下载需要的版本

wget  https://dl.grafana.com/enterprise/release/grafana-enterprise-11.1.0-1.x86_64.rpm

3.2、安装grafana

rpm -ivh grafana-enterprise-11.1.0-1.x86_64.rpm

3.3、启动grafana

systemctl daemon-reload 
systemctl enable grafana-server && systemctl start grafana-server

3.4、grafana中文化

vim /etc/grafana/grafana.ini
[users]
# 设置默认语言为中文 
default_language = zh-Hans

重启服务

systemctl restart grafana-server

3.5、下载导入grafana模板

https://grafana.com/grafana/dashboards/15172-node-exporter-for-prometheus-dashboard-based-on-11074/

在这里插入图片描述

3.6、加载grafana-piechart-panel插件

grafana-cli plugins install grafana-piechart-panel

tar -xvf grafana-piechart-panel.tar.gz
mv grafana-piechart-panel /var/lib/grafana/plugins/grafana-piechart-panel

3.7、浏览器访问

在这里插入图片描述


4、参考文献

https://prometheus.io/
https://blog.csdn.net/heian_99/article/details/126989356
https://www.cnblogs.com/saneri/p/14667301.html
https://blog.csdn.net/qq_31725371/article/details/114697770

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/44974.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

解决鸿蒙开发中克隆项目无法签名问题

文章目录 问题描述问题分析解决方案 问题描述 在一个风和日丽的早晨&#xff0c;这是我学习鸿蒙开发的第四天&#xff0c;把文档过了一遍的我准备看看别人的项目学习一下&#xff0c;于是就用git去clone了一个大佬的开源项目&#xff0c;在签名的时候遇到了问题&#xff1a; h…

在攻防演练中遇到的一个“有马蜂的蜜罐”

在攻防演练中遇到的一个“有马蜂的蜜罐” 有趣的结论&#xff0c;请一路看到文章结尾 在前几天的攻防演练中&#xff0c;我跟队友的气氛氛围都很好&#xff0c;有说有笑&#xff0c;恐怕也是全场话最多、笑最多的队伍了。 也是因为我们遇到了许多相当有趣的事情&#xff0c;其…

Spring JDBC 具名参数用法

Spring JDBC中具名参数的用法 maven引入Spring jdbc <dependency><groupId>org.springframework</groupId><artifactId>spring-jdbc</artifactId><version>5.3.19</version></dependency> 在Spring配置中配置 <!-…

【leetcode】滑动窗口专题

文章目录 1.长度最小的子数组2.无重复字符的最长子串3.最大连续1的个数III4.将x减小到0的最小操作数5.水果成篮6.找到字符串中所有字母异位词7.串联所有单词的子串8.最小覆盖子串 1.长度最小的子数组 leetcode 209.长度最小的子数组 看到这个题目&#xff0c;第一眼肯定想到的…

正则表达式控制everything等搜索工具更快速的对需要的内容进行检索

正则表达式对文件搜索工具规则 表格模式 匹配模式描述abgr(ale)y匹配 “gray” 或 “grey”.匹配除换行符之外的任意单个字符[abc]匹配字符 “a”、“b” 或 “c” 中的任意一个[^abc]匹配除了 “a”、“b”、“c” 之外的任意单个字符[a-z]匹配小写字母 a 到 z 之间的任意一…

科普文:深入理解Mybatis

概叙 (1) JDBC JDBC(Java Data Base Connection,java数据库连接)是一种用于执行SQL语句的Java API,可以为多种关系数据库提供统一访问,它由一组用Java语言编写的类和接口组成.JDBC提供了一种基准,据此可以构建更高级的工具和接口,使数据库开发人员能够编写数据库应用程序。 优点…

Vue3 + Echarts堆叠折线图的tooltip不显示问题

问题介绍 使用Echarts在Vue3Vite项目中绘制堆叠折线图的的时候&#xff0c;tooltip总是不显示&#xff0c;经过很长时间的排查和修改&#xff0c;最后发现是在使用上有错误导致的。 错误图片展示 问题原因 由于Vue3底层使用proxy代理创建示例&#xff0c;使用其创建出来的实…

RDD 专项练习

RDD 专项练习 现有分数信息文件 scores.txt 班级ID 姓名 年龄 性别 科目 成绩 12 张三 25 男 chinese 50 12 张三 25 男 math 60 12 张三 25 男 english 70 12 李四 20 男 chinese 50 12 李四 20 男 math 50 12 李四 20 男 english 50 12 王芳 19 女 chinese 70 12 王芳 19 女…

FPGA-Verilog-Vivado-软件使用

这里写目录标题 1 软件配置2 FPGA-7000使用2.1 运行启动方式 1 软件配置 编辑器绑定为Vscode&#xff0c;粘贴VS code运行文件的目录&#xff0c;后缀参数保持不变&#xff1a; 如&#xff1a; D:/Users/xdwu/AppData/Local/Programs/Microsoft VS Code/Code.exe [file name]…

从技术到管理:你必须知道的七个转变

在职业生涯的道路上&#xff0c;很多技术骨干会逐步转向管理岗位。这不仅是职位的晋升&#xff0c;更是角色、思维和能力的全方位转变。以下是七个关键的转变&#xff0c;帮助技术人员顺利完成这一跨越。 一、从个人贡献者到团队领导者的转变 在技术岗位上&#xff0c;成功往…

(19)夹钳(用于送货)

文章目录 前言 1 常见的抓手参数 2 参数说明 前言 Copter 支持许多不同的抓取器&#xff0c;这对送货应用和落瓶很有用。 按照下面的链接&#xff08;或侧边栏&#xff09;&#xff0c;根据你的设置了解配置信息。 Electro Permanent Magnet v3 (EPMv3)Electro Permanent M…

bug记录 qInstallMessageHandler的使用

QT (纯C)项目 ‘Qxxx‘ file not found 和 编译报错问题(已解决)_qt头文件file not found-CSDN博客 qInstallMessageHandler&#xff08;指针函数参数&#xff09; 需要静态指针&#xff0c;这个函数 #include <iostream> #include "singleton.h" #include &…

Linux操作系统CentOS如何更换yum镜像源

简介 CentOS&#xff0c;是基于Red Hat Linux提供的可自由使用源代码的企业级Linux发行版本&#xff1b;是一个稳定&#xff0c;可预测&#xff0c;可管理和可复制的免费企业级计算平台。 下载地址: centos安装包下载_开源镜像站-阿里云 相关仓库&#xff1a; CentOS过期源&…

职业教育人工智能实验实训室建设应用案例

随着人工智能技术的快速发展&#xff0c;其在职业教育领域的应用逐渐深入。唯众作为一家专注于教育技术领域的企业&#xff0c;积极响应国家关于人工智能教育的政策号召&#xff0c;通过建设人工智能实验实训室&#xff0c;为学生提供了一个实践操作与创新思维相结合的学习平台…

C++ STL iter_swap用法和实现

一&#xff1a;功能 交换两个迭代器指向的元素值&#xff0c;一般用在模板中 二&#xff1a;使用 #include <vector> #include <iostream>template <typename It, typename Cond>requires std::forward_iterator<It> && std::indirectly_swa…

富格林:曝光纠正安全交易误区

富格林指出&#xff0c;贵金属投资是许多投资者追求资产多样化和风险管理的重要途径。然而&#xff0c;正如任何投资领域一样&#xff0c;不少投资者也对贵金属投资产生了一些误区和错误观念。但事实上&#xff0c;如果这种误区一直伴随着我们的交易进程&#xff0c;是很难做到…

34 超级数据查看器 关联图片

超级数据查看器app&#xff08;excel工具&#xff0c;数据库软件&#xff0c;表格app&#xff09; 关联图片讲解 点击 打开该讲的视频 点击访问app下载页面 豌豆荚 下载地址 大家好&#xff0c;今天我们讲一下超级数据查看器的关联图片功能 这个功能能让表中的每一条信息&…

数据结构-散列表(hash table)

6.1 散列表的概念 散列表又叫哈希&#xff08;hash&#xff09;表&#xff0c;是根据键&#xff08;key&#xff09;直接访问在内存存储位置的值&#xff08;value&#xff09;的数据结构&#xff0c;由数组演化而来&#xff08;根据数组支持按照下标进行随机访问数据的特性&a…

windows脚本获取 svn版本号

简介 需要使用项目中svn的最新版本号 命令 set svnURL"URL" svn info %svnURL% | findstr "Revision:" > Version.txt for /f "token2 delims " %%i in (Version.txt) do set rev%%i echo %rev% pause

力扣爆刷第163天之TOP100五连刷81-85(回文链表、路径和、最长重复子数组)

力扣爆刷第163天之TOP100五连刷81-85&#xff08;回文链表、路径和、最长重复子数组&#xff09; 文章目录 力扣爆刷第163天之TOP100五连刷81-85&#xff08;回文链表、路径和、最长重复子数组&#xff09;一、234. 回文链表二、112. 路径总和三、169. 多数元素四、662. 二叉树…