五分钟带你玩转prometheus(七)监控linux

本文涉及的产品
可观测监控 Prometheus 版,每月50GB免费额度
简介: 五分钟带你玩转prometheus(七)监控linux


1.下载

node-exporter_rev17 (展示面板)

链接:https://pan.baidu.com/s/1d1Aogy6PkFu2wkW-ArsXsw 

提取码:0ajw

node-exporter

链接:https://pan.baidu.com/s/1o3y2ciTqEszDByokfMU_Xw 

提取码:wf1x

2.配置被监控服务器

因为需要监控linux服务器 所以 需要在被监控的linux必须安装node-exporter

解压即可

node-exporter默认端口为9100

tar -xvf node_exporter-0.17.0.linux-amd64.tar.gz -C /usr/local/

然后设置后台启动

1. cd /usr/local/node_exporter-0.17.0.linux-amd64
2. nohup ./node_exporter

3.设置prometheus

进入/usr/local/prometheus-2.17.1.linux-amd64/prometheus.yml

修改prometheus.yml 红框部分为添加

image.png

  - job_name: 'linux'
    static_configs:
    - targets: ['localhost:9100']
      labels:
        instance: linux

4.配置grafana

配置数据源 也就是prometheus地址

image.png

image.png

这里填写你prometheus地址(注意不是node-exporter的地址) 点击save后 如果失败会有提示 检查 9100端口是否起来了

然后配置显示模板面板

image.png

image.png

导入上面下载的可视化界面模板

image.png

image.png

如果出现以下显示 则安装成功

image.png

也可以去https://grafana.com/grafana/dashboards 下载自己需要的面板


相关实践学习
容器服务Serverless版ACK Serverless 快速入门:在线魔方应用部署和监控
通过本实验,您将了解到容器服务Serverless版ACK Serverless 的基本产品能力,即可以实现快速部署一个在线魔方应用,并借助阿里云容器服务成熟的产品生态,实现在线应用的企业级监控,提升应用稳定性。
相关文章
|
3月前
|
Prometheus 监控 Cloud Native
在Linux中,如何使用Grafana和Prometheus进行网络监控和可视化?
在Linux中,如何使用Grafana和Prometheus进行网络监控和可视化?
|
Prometheus 监控 Cloud Native
如何使用 Prometheus 和 Grafana 监控 Linux 进程?
如何使用 Prometheus 和 Grafana 监控 Linux 进程?
571 0
如何使用 Prometheus 和 Grafana 监控 Linux 进程?
|
6月前
|
Prometheus 监控 Cloud Native
Linux|centos二进制方式安装系统和网络监控神器prometheus+grafana(装逼神器它来了)(基础篇 一)
Linux|centos二进制方式安装系统和网络监控神器prometheus+grafana(装逼神器它来了)(基础篇 一)
299 0
|
6月前
|
Prometheus Cloud Native Linux
Linux|错误集锦|prometheus Error on ingesting samples that are too old or are too far into the future的解决
Linux|错误集锦|prometheus Error on ingesting samples that are too old or are too far into the future的解决
496 0
Linux|错误集锦|prometheus Error on ingesting samples that are too old or are too far into the future的解决
|
6月前
|
Prometheus Cloud Native Linux
Linux下安装prometheus & grafana
Linux下安装prometheus & grafana
254 0
|
6月前
|
Prometheus 监控 Cloud Native
Linux|centos7 Prometheus的自动服务发现 一(文件发现机制)
Linux|centos7 Prometheus的自动服务发现 一(文件发现机制)
124 0
|
Prometheus Cloud Native Linux
Prometheus(二)之Node Exporter采集Linux主机数据
Prometheus(二)之Node Exporter采集Linux主机数据
263 0
|
Prometheus 监控 Cloud Native
在Linux系统部署prometheus监控(2) --配置规则
在Linux系统部署prometheus监控(2) --配置规则
|
Prometheus 监控 Cloud Native
在Linux系统部署prometheus监控
在Linux系统部署prometheus监控
|
5天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
22 3