Skip to content
Snippets Groups Projects
Unverified Commit 1e4df581 authored by Grant Fleming's avatar Grant Fleming Committed by GitHub
Browse files

node-exporter: use correct procfs location (#2549)


this sets the procfs location in node-exporter to /host/root/proc
since the host fs is mounted at /host/root

Fixes #2548

Co-authored-by: default avatarGrant Fleming <gfleming@evroc.com>
parent b301c7dc
No related branches found
No related tags found
No related merge requests found
......@@ -214,6 +214,7 @@ function(params) {
'--web.listen-address=' + std.join(':', [ne._config.listenAddress, std.toString(ne._config.internal_port)]),
'--path.sysfs=/host/sys',
'--path.rootfs=/host/root',
'--path.procfs=/host/root/proc',
'--path.udev.data=/host/root/run/udev/data',
'--no-collector.wifi',
'--no-collector.hwmon',
......
......@@ -30,6 +30,7 @@ spec:
- --web.listen-address=127.0.0.1:9101
- --path.sysfs=/host/sys
- --path.rootfs=/host/root
- --path.procfs=/host/root/proc
- --path.udev.data=/host/root/run/udev/data
- --no-collector.wifi
- --no-collector.hwmon
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment