You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Running in a kubernetes space, to access the host's /proc/net requires presenting /proc/net as an alternative, such as /tmp/net. What I can't do (for example), is mount /proc as /tmp/proc and then /proc/net under /tmp/proc/net - not allowed as /proc can't be mounted under /proc.
Describe the solution you'd like
I'd like there to be a separate environment variable for /proc/net so that /proc/net/dev can be accessed from within a Kubernetes context.
Describe alternatives you've considered
I've tried running a daemonSet in Kubernetes with various mount options but wherever I mount /proc, the OS clobbers what I can see in /proc/net/dev. The only solution appears to be to mount /proc/net somewhere else but I then need to be able to specify a path to that alternate bit of /proc.
Additional context
I'm attempting to run telegraf as a daemonSet in kubernetes to report on system statistics. It can do so for disk, memory, cpu, but not network.
Is your feature request related to a problem? Please describe.
Running in a kubernetes space, to access the host's /proc/net requires presenting /proc/net as an alternative, such as /tmp/net. What I can't do (for example), is mount /proc as /tmp/proc and then /proc/net under /tmp/proc/net - not allowed as /proc can't be mounted under /proc.
Describe the solution you'd like
I'd like there to be a separate environment variable for /proc/net so that /proc/net/dev can be accessed from within a Kubernetes context.
Describe alternatives you've considered
I've tried running a daemonSet in Kubernetes with various mount options but wherever I mount /proc, the OS clobbers what I can see in /proc/net/dev. The only solution appears to be to mount /proc/net somewhere else but I then need to be able to specify a path to that alternate bit of /proc.
Additional context
I'm attempting to run telegraf as a daemonSet in kubernetes to report on system statistics. It can do so for disk, memory, cpu, but not network.
Something like this?
The text was updated successfully, but these errors were encountered: