Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release/v1.0] docs: Corrects Beyla excutable_name to executable_name. #587

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/sources/reference/components/beyla.ebpf.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ beyla.ebpf "<LABEL>" {

`beyla.ebpf` supports the following arguments:

Name | Type | Description | Default | Required
-----------------|----------|-------------------------------------------------------------------------------------|---------|---------
`open_port` | `string` | The port of the running service for Beyla automatically instrumented with eBPF. | | no
`excutable_name` | `string` | The name of the executable to match for Beyla automatically instrumented with eBPF. | | no
Name | Type | Description | Default | Required
------------------|----------|-------------------------------------------------------------------------------------|---------|---------
`open_port` | `string` | The port of the running service for Beyla automatically instrumented with eBPF. | | no
`executable_name` | `string` | The name of the executable to match for Beyla automatically instrumented with eBPF. | | no

`open_port` accepts a comma-separated list of ports (for example, `80,443`), and port ranges (for example, `8000-8999`).
If the executable matches only one of the ports in the list, it is considered to match the selection criteria.

`excutable_name` accepts a regular expression to be matched against the full executable command line, including the directory where the executable resides on the file system.
`executable_name` accepts a regular expression to be matched against the full executable command line, including the directory where the executable resides on the file system.

## Blocks

Expand Down
Loading