来自不同挂载点的相同值

Identical values from different mountpoints

请帮帮我! 我有虚拟机。服务器 Ubuntu 18.04 并在 docker 下安装 node-exporter prometheus。 在服务器上我有几个磁盘..但是在指标中我看到来自不同磁盘的相同值。 求助,怎么了?谢谢!

如果您查看 Docker instructions in the node_exporter README,您会发现您缺少进程设置。添加pid: "host"。您还可以简化卷安装。

node-exporter:
  pid: "host"
  volumes:
  - /:/host:ro,rslave
  command:
  - '--path.rootfs=/host'