现在慢慢在把prometheus operator的一些概念组织完整。
https://github.com/coreos/prometheus-operator/tree/master/contrib/kube-prometheus
这个全家桶是值得关注的,里面的概念和步骤要领会。
Node exporter的github地址:
https://github.com/prometheus/node_exporter
这里面也提到了用于win的 WMI exporter 。
窗口级安装命令:
docker run -d -p 9100:9100 \ -v "/proc:/host/proc:ro" \ -v "/sys:/host/sys:ro" \ -v "/:/rootfs:ro" \ --net="host" \ quay.io/prometheus/node-exporter \ -collector.procfs /host/proc \ -collector.sysfs /host/sys \ -collector.filesystem.ignored-mount-points "^/(sys|proc|dev|host|etc)($|/)"
然后,就出来了。
时间: 2024-10-18 17:52:40