Skip to content

Latest commit

 

History

History
 
 

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

eBPF Examples

  • kprobe - Attach a program to the entry or exit of an arbitrary kernel symbol (function).
  • uprobe - Like a kprobe, but for symbols in userspace binaries (e.g. bash).
  • tracepoint - Attach a program to predetermined kernel tracepoints.
  • Add your use case(s) here!

How to run

cd ebpf/examples/
go run -exec sudo [./kprobe,./uprobe,./tracepoint...]