From 3351d0e386ba6ac00a7527493b3fb80e7737dbf8 Mon Sep 17 00:00:00 2001 From: Nikola Grcevski <6207777+grcevski@users.noreply.github.com> Date: Tue, 2 Jan 2024 15:56:41 -0500 Subject: [PATCH] Fix tutorial usage of open_port (#523) --- docs/sources/tutorial/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/tutorial/index.md b/docs/sources/tutorial/index.md index 9699daed1..4c2b302c4 100644 --- a/docs/sources/tutorial/index.md +++ b/docs/sources/tutorial/index.md @@ -113,7 +113,7 @@ BEYLA_PRINT_TRACES=true BEYLA_OPEN_PORT=8080 sudo -E beyla ``` The `BEYLA_PRINT_TRACES=true` configuration option tells Beyla to log any trace to the standard output. -The `BEYLA_OPEN_PORT=true` option tells Beyla to instrument the service that owns the port 8080. +The `BEYLA_OPEN_PORT=8080` option tells Beyla to instrument the service that owns the port 8080. Since Beyla requires administrator rights to load eBPF programs, the `beyla` command must run with `sudo -E` (or as a `root` user).