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

docs: fix small typos in README.md #117

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Only Linux kernels of version 4.20 or above are supported.

**Output data**

The output data model is defined in [service.proto file](libebpfdiscoveryproto/ebpfdiscoveryproto/service.proto). Incoming HTTP requests are aggregated into services by unique PID and endpoint. Additionaly, services have counters describing how many internal and external clients have connected to them.
The output data model is defined in [service.proto file](libebpfdiscoveryproto/ebpfdiscoveryproto/service.proto). Incoming HTTP requests are aggregated into services by unique PID and endpoint. Additionally, services have counters describing how many internal and external clients have connected to them.
Discovered services are popped from the program in a specified time interval, serialized to JSON format and sent to the program's standard output, i.e.:
```
{"service":[{"pid":172613,"endpoint":"127.0.0.1:8000/","internalClientsNumber":1}]}
Expand Down Expand Up @@ -57,7 +57,7 @@ Optional command line arguments can be set in place of the OPTIONS tag:
| Option | Description | Default value |
|-----------------------------|-----------------------------------------------------------------------------------------------------------------|--------------------------------------|
| `--help, -h` | Display available options. | false |
| `--interval=VALUE` | Set the time inteval (in seconds) in which the discovered services are reported to the programs standard output | 60 (seconds). |
| `--interval=VALUE` | Set the time interval (in seconds) in which the discovered services are reported to the programs standard output | 60 (seconds). |
| `--log-dir=DIRECTORY` | Set log files directory. | eBPF Discovery binary root directory |
| `--log-level=LEVEL` | Set logging level, where LEVEL={trace, debug, info, warning, error, critical, off}. | error |
| `--log-no-stdout` | Disable logging to stdout. | false |
Expand Down