WIP - DO NOT REVIEW RFC: Integrate Beyla without eBPF binaries #2734
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Description
Beyla will no longer include pre-built eBPF binaries and related artifacts. The main reasons are:
The eBPF binaries are now generated by an upstream docker image, that encapsulates all the necessary tooling.
As a result of how
go mod vendor
works by trimming non-used dependencies, and becausego build
can only be used to compile.go
files, an extraMakefile
target dependency and an extra "GOTAG" is required as fair trade-off trade-off.I have opted to list both the dependency and the extra go-tag close to the place of usage, with the assumption that this will make it easier for their usage scope to be identified.
Non-Linux compilations should result as a no-op. This is abstracted on the Beyla side and there's no need for explicit checks on the Alloy end, except for the aforementioned extra
Makefile
target.Notes to the Reviewer
Tested with
make alloy
andmake alloy-image
Related Beyla PR