标签:tor roc cfs path list volume host eth dock
现象:prometheus抓取到的网卡metric很少,很多都没有
解决
node_exporter组件是通过读取相应的系统文件来进行计算值得.
我将宿主机的/proc,映射至容器内的/host/proc下时,总的来看文件数量似乎没变化,也没啥毛病.但是我分别查看了宿主机的/proc/net/dev和容器内的/host/proc/net/dev文件,发现不对.
差别很大
我将node_exporter的网络模式调整到了host,该问题完美解决
docker-compose代码文件
version: ‘3.1‘
services:
node-exporter:
image: prom/node-exporter
container_name: monitor-node-exporter
hostname: node-exporter
restart: always
volumes:
- /:/host
network_mode: host
pid: "host"
command: "--web.listen-address=:9111 --path.rootfs=/host --path.procfs=/host/proc --path.sysfs=/host/sys"
2020年06月02日_Node_exporter的docker部署方式监控网络不准确问题
标签:tor roc cfs path list volume host eth dock
原文地址:https://www.cnblogs.com/jojoword/p/13031087.html