You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all! I'm looking at the Datadog code and i would like to run some test locally to better understand how it works. Following the README i've put together the following commands:
git clone https://github.com/DataDog/datadog-agent.git $GOPATH/src/github.com/DataDog/datadog-agent
cd$GOPATH/src/github.com/DataDog/datadog-agent
git checkout 7.62.1 # just to pin a stable version
python3 -m venv venv/
source venv/bin/activate
pip install -r requirements.txt
invoke install-tools
invoke deps
Now i should be able to run some tests. Something like this works well
👋 You might need the ninja-build APT package, since we use that for building the eBPF object files.
Word of caution though about clang 18.1.3 though. We don't support that version and there is a good chance things will not work correctly. We have identified some regressions in clang for eBPF programs that we are working to get fixed before upgraded versions of clang will work correctly with our programs.
Hi all! I'm looking at the Datadog code and i would like to run some test locally to better understand how it works. Following the README i've put together the following commands:
Now i should be able to run some tests. Something like this works well
invoke test --targets=./pkg/network
but if i try:
it fails with no visible errors:
I' using clang version
18.1.3
that's why I'm addingDD_SYSPROBE_SKIP_CLANG_CHECK
.Some info on my environment
Am i missing something obvious? Thank you!
The text was updated successfully, but these errors were encountered: