Skip to content
This repository has been archived by the owner on Feb 9, 2022. It is now read-only.

node-exporter: "--path.rootfs=/rootfs" missing #1087

Open
floek opened this issue Feb 11, 2021 · 1 comment
Open

node-exporter: "--path.rootfs=/rootfs" missing #1087

floek opened this issue Feb 11, 2021 · 1 comment

Comments

@floek
Copy link

floek commented Feb 11, 2021

Hi,

I wondered, why I can't see node_filesystem_free_bytes for my xfs mounts and found, the option "--path.rootfs=/rootfs" was missing for node-exporter.

I fixed it with an override:

  nodeExporter+: {
    daemonset+: {
      spec+: {
        template+: {
          spec+:{
            containers_+: {
              default+: {
                args_+: {
                  "path.rootfs": "/rootfs",
                },
              }
            }
          }
        }
      }
    }
  },

Please change this in future releases.

Cheers,
floek

@javsalgar
Copy link
Contributor

Hi,

Thank you so much for the input! We will work on adding it. If you want to speed up the process, feel free to add a PR and we will review it

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants