var ( ErrClosed = os.ErrClosed )
func IsUnknownEvent(err error) bool
IsUnknownEvent returns true if the error occurred because an unknown event was submitted to the perf event ring.
Reader allows reading bpf_perf_event_output from user space.
type Reader struct {
// contains filtered or unexported fields
}
▹ Example
func NewReader(array *ebpf.Map, perCPUBuffer int) (*Reader, error)
NewReader creates a new reader with default options.
array must be a PerfEventArray. perCPUBuffer gives the size of the per CPU buffer in bytes. It is rounded up to the nearest multiple of the current page size.
func NewReaderWithOptions(array *ebpf.Map, perCPUBuffer int, opts ReaderOptions) (pr *Reader, err error)
NewReaderWithOptions creates a new reader with the given options.
func (pr *Reader) Close() error
Close frees resources used by the reader.
It interrupts calls to Read.
Calls to perf_event_output from eBPF programs will return ENOENT after calling this method.
func (pr *Reader) Pause() error
Pause stops all notifications from this Reader.
While the Reader is paused, any attempts to write to the event buffer from BPF programs will return -ENOENT.
Subsequent calls to Read will block until a call to Resume.
func (pr *Reader) Read() (Record, error)
Read the next record from the perf ring buffer.
The function blocks until there are at least Watermark bytes in one of the per CPU buffers. Records from buffers below the Watermark are not returned.
Records can contain between 0 and 7 bytes of trailing garbage from the ring depending on the input sample's length.
Calling Close interrupts the function.
func (pr *Reader) ReadInto(rec *Record) error
ReadInto is like Read except that it allows reusing Record and associated buffers.
▹ Example
func (pr *Reader) Resume() error
Resume allows this perf reader to emit notifications.
Subsequent calls to Read will block until the next event notification.
ReaderOptions control the behaviour of the user space reader.
type ReaderOptions struct { // The number of written bytes required in any per CPU buffer before // Read will process data. Must be smaller than PerCPUBuffer. // The default is to start processing as soon as data is available. Watermark int }
Record contains either a sample or a counter of the number of lost samples.
type Record struct { // The CPU this record was generated on. CPU int // The data submitted via bpf_perf_event_output. // Due to a kernel bug, this can contain between 0 and 7 bytes of trailing // garbage from the ring depending on the input sample's length. RawSample []byte // The number of samples which could not be output, since // the ring buffer was full. LostSamples uint64 }