├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ └── testing.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── images ├── feature_view.png ├── help_menu.png ├── map_entry_edit_view.png ├── map_entry_view2.png └── program_view.png ├── main.go ├── ui ├── errorview.go ├── explorer.go ├── features.go ├── helpview.go ├── map.go ├── map_test.go └── ui.go └── utils ├── bpf.go ├── bpf_test.go ├── utils.go └── utils_test.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vmlinux.h 2 | *.swp 3 | ebpfmon 4 | bpftool/** 5 | .output 6 | log.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/go.sum -------------------------------------------------------------------------------- /images/feature_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/images/feature_view.png -------------------------------------------------------------------------------- /images/help_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/images/help_menu.png -------------------------------------------------------------------------------- /images/map_entry_edit_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/images/map_entry_edit_view.png -------------------------------------------------------------------------------- /images/map_entry_view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/images/map_entry_view2.png -------------------------------------------------------------------------------- /images/program_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/images/program_view.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/main.go -------------------------------------------------------------------------------- /ui/errorview.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/ui/errorview.go -------------------------------------------------------------------------------- /ui/explorer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/ui/explorer.go -------------------------------------------------------------------------------- /ui/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/ui/features.go -------------------------------------------------------------------------------- /ui/helpview.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/ui/helpview.go -------------------------------------------------------------------------------- /ui/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/ui/map.go -------------------------------------------------------------------------------- /ui/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/ui/map_test.go -------------------------------------------------------------------------------- /ui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/ui/ui.go -------------------------------------------------------------------------------- /utils/bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/utils/bpf.go -------------------------------------------------------------------------------- /utils/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/utils/bpf_test.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/utils/utils.go -------------------------------------------------------------------------------- /utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redcanaryco/ebpfmon/HEAD/utils/utils_test.go --------------------------------------------------------------------------------