Docker监控系统中添加NodeExporter

目录

注意

[修改 docker-compose.yml,增加 Node Exporter](#修改 docker-compose.yml,增加 Node Exporter)

[修改 Prometheus 配置文件,添加 Node Exporter 目标](#修改 Prometheus 配置文件,添加 Node Exporter 目标)

[启动 Node Exporter 并刷新 Prometheus 配置](#启动 Node Exporter 并刷新 Prometheus 配置)

验证


注意

localhost是本机的ip地址,需要修改

修改 docker-compose.yml,增加 Node Exporter

在 /opt/monitor/docker-compose.yml 文件中,增加一个服务 node-exporter:

复制代码
version: '3.9'
services:
  prometheus:
    image: prom/prometheus:latest
    container_name: prometheus
    volumes:
      - ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
    ports:
      - "9090:9090"
    restart: always

  grafana:
    image: grafana/grafana:latest
    container_name: grafana
    ports:
      - "3000:3000"
    environment:
      - GF_SECURITY_ADMIN_USER=admin
      - GF_SECURITY_ADMIN_PASSWORD=admin
    restart: always

  node-exporter:
    image: prom/node-exporter:latest
    container_name: node-exporter
    network_mode: "host"       # 让 Node Exporter 能直接访问宿主机指标
    pid: "host"                # 允许访问宿主机进程信息
    restart: always

说明:

  • network_mode: "host" 是 Node Exporter 的推荐配置,可以直接采集宿主机指标。

  • 不需要端口映射,因为 Prometheus 会直接抓 9100 端口。

修改 Prometheus 配置文件,添加 Node Exporter 目标

编辑 /opt/monitor/prometheus/prometheus.yml,增加 node-exporter scrape 配置:

复制代码
global:
  scrape_interval: 5s

scrape_configs:
  - job_name: 'prometheus'
    static_configs:
      - targets: ['localhost:9090']

  - job_name: 'node-exporter'
    static_configs:
      - targets: ['localhost:9100']

启动 Node Exporter 并刷新 Prometheus 配置

复制代码
cd /opt/monitor

# 重新启动容器
docker compose down
docker compose up -d

或者只重启 Prometheus 和 Node Exporter:

复制代码
docker compose up -d prometheus node-exporter

验证

  1. Prometheus 页面访问:http://localhost:9090

    Status → Targets 中,你应该看到:

Grafana 页面访问:http://localhost:3000

登录账号:admin / admin

可以导入官方 Node Exporter dashboard(Dashboard ID: 1860),直接显示主机 CPU/内存/磁盘/网络图表。

相关推荐
chlk12316 小时前
Linux文件权限完全图解:读懂 ls -l 和 chmod 755 背后的秘密
linux·操作系统
舒一笑17 小时前
Ubuntu系统安装CodeX出现问题
linux·后端
改一下配置文件17 小时前
Ubuntu24.04安装NVIDIA驱动完整指南(含Secure Boot解决方案)
linux
碳基沙盒18 小时前
OpenClaw 多 Agent 配置实战指南
运维
深紫色的三北六号1 天前
Linux 服务器磁盘扩容与目录迁移:rsync + bind mount 实现服务无感迁移(无需修改配置)
linux·扩容·服务迁移
SudosuBash1 天前
[CS:APP 3e] 关于对 第 12 章 读/写者的一点思考和题解 (作业 12.19,12.20,12.21)
linux·并发·操作系统(os)
哈基咪怎么可能是AI2 天前
为什么我就想要「线性历史 + Signed Commits」GitHub 却把我当猴耍 🤬🎙️
linux·github
十日十行2 天前
Linux和window共享文件夹
linux
木心月转码ing3 天前
WSL+Cpp开发环境配置
linux
蝎子莱莱爱打怪4 天前
Centos7中一键安装K8s集群以及Rancher安装记录
运维·后端·kubernetes