Replies: 1 comment 2 replies
-
@jidckii Sorry just saw that now, next time just tag me directly. Here's how to fix this: #697 (comment) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Recently, I wondered why I do not have metrics for file systems in the cluster?
It turned out that node-exporter did not have enough privileges + the exception rules needed to be corrected.
node_scrape_collector_success{collector="filesystem"} 0
in logs:
err="open /host/proc/1/mounts: permission denied"
I added
privileged: true
, but statistics for PVC did not appear, only for rootfs.Error in in logs:
I had to run it as root, then the data showed up. But it doesn't seem very safe.
I'm not strong in seLinux policies, but it seems that the barrel can be in this?
Beta Was this translation helpful? Give feedback.
All reactions