Configure OBI export modes
Você está visualizando a versão em versão em inglês desta página porque ela ainda não foi traduzida. Possui interesse em ajudar? Veja como contribuir.
In Direct mode OBI pushes metrics and traces directly to a remote endpoint using the OpenTelemetry protocol (OTLP).
OBI can also expose a Prometheus HTTP endpoint ready to scrape, for example in pull mode.
To use Direct mode requires configuration with authentication credentials. Set the OTLP endpoint authentication credentials with these environment variables:
OTEL_EXPORTER_OTLP_ENDPOINT
OTEL_EXPORTER_OTLP_HEADERS
To run in Direct mode using the Prometheus scrape endpoint, see the configuration documentation.
Configure and run OBI
This tutorial assumes OBI and OTel Collector are running natively on the same host, so there is no need to secure the traffic nor provide authentication in the OTel Collector OTLP receiver.
Install OpenTelemetry eBPF Instrumentation and download the example configuration file.
First, specify the executable to instrument. For a service executable running on
port 443
, add the open_port
property to the YAML document:
discovery:
instrument:
- open_ports: 443
Next, specify where the traces and the metrics are sent. If the OTel collector
is running on the local host, it uses port 4318
:
otel_metrics_export:
endpoint: http://localhost:4318
otel_traces_export:
endpoint: http://localhost:4318
You can specify a combination of otel_metrics_export
and otel_traces_export
properties to export metrics, traces, or both.
Run OBI with a named configuration file:
beyla -config instrument-config.yml
or
OTEL_EBF_CONFIG_PATH=instrument-config.yml beyla
Feedback
Was this page helpful?
Thank you. Your feedback is appreciated!
Please let us know how we can improve this page. Your feedback is appreciated!