1 // Package ringbuf allows interacting with Linux BPF ring buffer. 2 // 3 // BPF allows submitting custom events to a BPF ring buffer map set up 4 // by userspace. This is very useful to push things like packet samples 5 // from BPF to a daemon running in user space. 6 package ringbuf 7