1、node_exporter部署 1.1、安装主机说明 1.2、软件安装 1.2.1、解压软件 1.2.2、程序位置重新调整 1.2.3、配置环境变量 1.2.4、配置systemd 1.2.5、启动服务 1.2.6、检查是否正常启动 1.2.7、使用浏览器访问测试是否正常 1.3、在prometheus增加node_exporter主机 ...
- targets: ['10.0.20.12:9100'] # 静态配置 node 节点的地址 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 重新加载配置文件 检查配置文件,并重新加载 # 检查配置文件 [root@es01 config]# /opt/prometheus-2.14/bin/promtool check config /opt/prome...
[root@localhost local]# systemctl start node_exporter [root@localhost local]# systemctl enable node_exporter [root@localhost local]# ss -tunlp|grep node_exporter tcp LISTEN 0 128 [::]:9100 [::]:* users:(("node_exporter",pid=20063,fd=3)) 3、访问web界面查看以下,监控状态:http://192.16...
(1)运行node-exporter容器 NodeEXporter主要负责收集Host硬件信息和操作系统信息! [root@dockerA ~]# docker run -d --name node -p 9100:9100 -v /proc:/host/proc -v /sys:/host/sys -v /:/rootfs --net=host prom/node-exporter --path.procfs /host/proc --path.sysfs /host/sys --collector....
1、node_exporter安装 node_exporter是Prometheus的一个资源数据采集组件,这个往往会部署再被监控的服务器上,收集被监控的服务器资源数据,给Prometheus存储,然后再通过grafana展示出来,我们分别安装win11和centos两个节点资源监控。 离线下载地址:https://prometheus.io/download/#node_exporter ...
使用如下命令打开Prometheus对应的配置文件信息 scrape_configs: - job_name: 'node-exporter' static_configs: - targets: ['node-exporter:9100'] 官方不推荐将node_exporter部署为Docker容器,因为它需要访问主机系统。对于需要Docker部署的情况,请指定path.rootfs参数。 此参数必须与主机根目录的绑定装载中的路径匹配...
在Linux系统上,你可以使用以下命令下载并安装node-exporter: 在Windows系统上,你可以在node-exporter的GitHub页面下载可执行文件,并运行它。 配置Prometheus: 打开Prometheus的配置文件prometheus.yml,一般位于安装目录下。 在scrape_configs下添加以下配置: 在scrape_configs下添加以下配置: 启动Prometheus: 打开命令行,切换...
node_exporter 参数定义 黑名单: 关闭某一项默认开启的采集项,使用--no-collector参数可指定不需要的模块,如果不指定,将使用默认配置。 白名单:关闭默认采集项而只开启某些采集,使用--collector.disable-defaults参数关闭默认采集项,使用--collector.<name>指定开启的采集项。
一,安装node_exporter node_exporter是监控服务器CPU、内存、磁盘、I/O等信息,首先需要安装node_exporter。node_exporter的作用是用于机器系统数据收集。 1,官网下载地址 https://prometheus.io/download/#node_exporter 2,解压二进制包 tar -xf node_exporter-1.1.2.linux-amd64.tar.gz mv node_exporter-1.1.2...