yellowpattern

Results 31 comments of yellowpattern

To change the queue length to 256K: sysctl -w fs.inotify.max_queued_events=262144

This is only part of the problem. Other parts of this problem are: * Linux doesn't tell you how many overflow events there were * This python interface doesn't tell...

Why shouldn't the solution here be to associate a BGPPeer instance with an instance of something else, such as an interface from nmstate's nncp? The IP address to be used...

github bots auto-actions are the worst. There's no reason that what's described here for IPv6 couldn't also be applied to IPv4, where the subnet comes from the address pool and...

This fix is over complicated for what's required - making "ignored" by "df" an attribute of the mounted filesystem list.

Sorry, I lie, I get statistics for "eth0" but not the physical interfaces.

If I add: ``` ... volumeMounts: - name: procnet mountPath: /tmp/net ... volumes: - name: procnet hostPath: path: /proc/net type: '' ``` Then I can see the real devices in...

The config sets HOST_PROC to be /hostfs/proc BUT /hostfs/proc/net/dev is the same as /proc/net/dev. Problem: /proc can't be ounted under /proc. Fixing this requires something like https://github.com/shirou/gopsutil/issues/1625

I found a way... ``` spec: ... template: ... spec: ... volumeMounts: - name: procnet mountPath: /hostfs/proc/net ... volumes: - name: procnet hostPath: path: /proc/net type: '' ```