This is documentation for the next version of Grafana Beyla documentation. For the latest stable release, go to the latest version.

Documentationbreadcrumb arrow Beylabreadcrumb arrow Configurebreadcrumb arrow Controlling instrumentation
Open source

Configure Beyla instrumentation options

This configuration section describes various options for controlling the instrumentation capabilities of Beyla related to distributed traces, context propagation and various protocol instrumentation options.

Distributed traces and context propagation

YAML section: ebpf

You can configure the component under the ebpf section of your YAML configuration or via environment variables.

YAML

environment variable

DescriptionTypeDefault
enable_context_propagation

BEYLA_BPF_ENABLE_CONTEXT_PROPAGATION

Deprecated. Use context_propagation instead. For more information, refer to the enable context propagation section.booleanfalse
context_propagation

BEYLA_BPF_CONTEXT_PROPAGATION

Controls trace context propagation. Accepted values are headers, tcp, headers,tcp, all, and disabled. For more information, refer to the context propagation section.stringdisabled
track_request_headers

BEYLA_BPF_TRACK_REQUEST_HEADERS

Track incoming Traceparent headers for trace spans. For more information, refer to the track request headers section.booleanfalse

Enable context propagation

Deprecated. Use context_propagation instead.

Context propagation

Beyla can inject trace context into HTTP headers, TCP options, or both. Configure one of the following values:

  • headers: Inject W3C traceparent headers. This interoperates with services instrumented by OpenTelemetry SDKs.
  • tcp: Inject context into TCP option kind 25. Beyla must instrument both endpoints.
  • headers,tcp: Enable both mechanisms. Incoming HTTP headers take precedence when both mechanisms provide context.
  • all: Enable both mechanisms. This is equivalent to headers,tcp.
  • disabled: Disable trace context propagation. This is the default.

For example, enable both mechanisms in the YAML configuration:

YAML
ebpf:
  context_propagation: headers,tcp

To enable only HTTP header propagation with an environment variable:

shell
export BEYLA_BPF_CONTEXT_PROPAGATION=headers

TCP propagation can carry context for encrypted HTTP/1 traffic because it does not modify the encrypted payload. It does not cross proxies or load balancers that terminate and create new TCP connections. TCP options are not used for HTTP/2 or gRPC because one connection can carry concurrent streams with different trace contexts.

To use this option in containerized environments (Kubernetes and Docker), you must:

  • Deploy Beyla as a DaemonSet with host network access hostNetwork: true
  • Volume mount the /sys/fs/cgroup path from the host as local /sys/fs/cgroup path
  • The /sys/kernel/tracing path from the host must be volume mounted as local /sys/kernel/tracing path, because of the mitigation code added to handle the FIONREAD kernel bug.
  • Grant the CAP_NET_ADMIN capability to the Beyla container

For more information about protocol support and limitations, including a Kubernetes configuration example, refer to Distributed traces with Beyla.

Track request headers

This option lets Beyla process any incoming Traceparent header values. If enabled, when Beyla sees an incoming server request with a Traceparent header value, it uses the provided ’trace id’ to create its own trace spans.

This option does not affect Go applications, where the Traceparent field is always processed.

Enabling this option may increase performance overhead in high request volume scenarios. This option is only useful when generating Beyla traces; it does not affect metrics.

Payload extraction

Various cloud and database protocols are implemented on top of HTTP. For example, all AWS S3 (Amazon Web Services) requests are in fact HTTP requests. To create better traces and metrics, Beyla has custom protocol detectors which run on top of HTTP, by performing HTTP payload extraction. You can configure which payload extractors are enabled by default with the following options:

YAML section:

ebpf:
  http:
    graphql:
YAML option

Environment variable

DescriptionTypeDefault
enabled

BEYLA_HTTP_GRAPHQL_ENABLED

Enable GraphQL protocol detection in HTTP payload processing.boolean(true)

YAML section:

ebpf:
  http:
    elasticsearch:
YAML option

Environment variable

DescriptionTypeDefault
enabled

BEYLA_HTTP_HTTP_ELASTICSEARCH_ENABLED

Enable Elasticsearch protocol detection in HTTP payload processing. See below for details.boolean(true)

Opensearch is a fork of Elasticsearch and therefore also supported.

ProductMethodsVersion
Elasticsearch/_search, /_msearch, /_bulk, /_doc7.14+
Opensearch/_search, /_msearch, /_bulk, /_doc3.0.0+

YAML section:

ebpf:
  http:
    aws:
YAML option

Environment variable

DescriptionTypeDefault
enabled

BEYLA_HTTP_HTTP_AWS_ENABLED

Enable AWS services protocol detection in HTTP payload processing. See below for list of AWS supported protocols.boolean(true)

List of supported AWS services protocol detectors:

ProtocolMethods
S3CreateBucket, DeleteBucket, PutObject, DeleteObject, ListBuckets, ListObjects, GetObject
SQSAll

Generative AI instrumentation

Beyla can identify supported GenAI providers and higher-level GenAI operations by inspecting HTTP payloads. Each detector is disabled by default and can be enabled independently.

YAML section:

YAML
ebpf:
  payload_extraction:
    http:
      genai:
YAML option

Environment variable

DescriptionTypeDefault
openai.enabled

BEYLA_HTTP_OPENAI_ENABLED

Enable OpenAI payload extraction and parsing.booleanfalse
anthropic.enabled

BEYLA_HTTP_ANTHROPIC_ENABLED

Enable Anthropic payload extraction and parsing.booleanfalse
gemini.enabled

BEYLA_HTTP_GEMINI_ENABLED

Enable Google AI Studio (Gemini) payload extraction and parsing.booleanfalse
qwen.enabled

BEYLA_HTTP_QWEN_ENABLED

Enable Qwen (DashScope) payload extraction and parsing.booleanfalse
bedrock.enabled

BEYLA_HTTP_BEDROCK_ENABLED

Enable AWS Bedrock payload extraction and parsing.booleanfalse
mcp.enabled

BEYLA_HTTP_MCP_ENABLED

Enable Model Context Protocol (MCP) payload extraction and parsing.booleanfalse
embedding.enabled

BEYLA_HTTP_GENAI_EMBEDDING_ENABLED

Enable generic embedding provider (Voyage AI, Cohere, Jina AI) payload extraction and parsing.booleanfalse
rerank.enabled

BEYLA_HTTP_RERANK_ENABLED

Enable rerank (Cohere, Jina AI, Voyage AI, etc.) payload extraction and parsing.booleanfalse
retrieval.enabled

BEYLA_HTTP_RETRIEVAL_ENABLED

Enable vector retrieval (Pinecone, Qdrant, Milvus, Chroma, Weaviate, etc.) payload extraction and parsing.booleanfalse
ollama.enabled

BEYLA_HTTP_OLLAMA_ENABLED

Enable the Ollama native API payload extraction and parsing.booleanfalse
openai_compatible.enabled

BEYLA_HTTP_OPENAI_COMPATIBLE_ENABLED

Enable payload extraction and parsing for configured OpenAI-compatible gateways.booleanfalse
openai_compatible.gatewaysConfigure gateway destinations. Each entry requires host and can include port and provider.listempty

For example, enable OpenAI and embedding detection and configure an OpenAI-compatible gateway:

YAML
ebpf:
  payload_extraction:
    http:
      genai:
        openai:
          enabled: true
        embedding:
          enabled: true
        openai_compatible:
          enabled: true
          gateways:
            - host: llm-gateway.example.com
              port: 443
              provider: acme-gateway

The host match is case-insensitive. If port is omitted, Beyla matches any destination port. The optional provider value is reported in the gen_ai.provider.name span attribute.

HTTP header extraction

Beyla can extract selected HTTP request and response headers and add them as span attributes, and can obfuscate selected header values before export. To enable this feature, configure HTTP payload enrichment, select the header attributes for export, and set an HTTP buffer size large enough to capture the headers you want to inspect. Header extraction is disabled by default to avoid leaking sensitive data and increasing trace cardinality.

Extracted request headers are exported as http.request.header.<header_name> span attributes. Extracted response headers are exported as http.response.header.<header_name> span attributes. Header names are converted to lowercase in the exported attribute name, and header values are exported as string arrays. This configuration adds attributes to traces; it does not add HTTP headers as Beyla RED metric labels.

YAML section:

YAML
ebpf:
  payload_extraction:
    http:
      enrichment:
YAML option

Environment variable

DescriptionTypeDefault
enabled

BEYLA_HTTP_ENRICHMENT_ENABLED

Enable HTTP header and body enrichment.booleanfalse
policy.default_action.headersDefault action for HTTP headers that do not match a rule. Accepted values: exclude, include, obfuscate.stringexclude
policy.default_action.bodyDefault action for HTTP body content that does not match a rule. Accepted values: exclude, include, obfuscate.stringexclude
policy.obfuscation_string

BEYLA_HTTP_ENRICHMENT_OBFUSCATION_STRING

Replacement string used when a rule action is obfuscate.string***
rulesOrdered list of include, exclude, and obfuscate rules.listempty

For example, this configuration extracts X-Tenant-ID, X-Forwarded-Host, and response rate-limit headers, and shows how to obfuscate request Authorization values before export:

YAML
attributes:
  select:
    traces:
      include:
        - "http.request.header.*"
        - "http.response.header.*"

ebpf:
  buffer_sizes:
    http: 8192
  payload_extraction:
    http:
      enrichment:
        enabled: true
        policy:
          default_action:
            headers: exclude
            body: exclude
          obfuscation_string: "***"
        rules:
          - action: obfuscate
            type: headers
            scope: request
            match:
              patterns:
                - "Authorization"
              case_sensitive: false
          - action: include
            type: headers
            scope: all
            match:
              patterns:
                - "X-Tenant-ID"
                - "X-Forwarded-Host"
                - "X-RateLimit-*"
              case_sensitive: false

With this configuration, Beyla can add attributes such as http.request.header.x-tenant-id, http.request.header.x-forwarded-host, and http.response.header.x-ratelimit-remaining to spans.

HTTP header enrichment is currently not available for Go applications.

Header rules use the following fields:

  • action: include, exclude, or obfuscate.
  • type: Set to headers for header extraction rules.
  • scope: request, response, or all.
  • match.patterns: Header name glob patterns.
  • match.case_sensitive: Whether the header name match is case-sensitive.
  • match.url_path_patterns: Optional URL path glob patterns for limiting where the rule applies.
  • match.methods: Optional list of HTTP methods for limiting where the rule applies.
  • match.response_status_code: Optional response status code comparisons for limiting where the rule applies. Supported comparisons are equals, not_equals, greater_than, greater_equals, less_than, and less_equals.
  • obfuscation_string: Optional replacement string used when the rule action is obfuscate. It overrides policy.obfuscation_string for that rule.

Header rules are evaluated in order, and the first matching header rule wins. Put specific obfuscation or exclusion rules before broader include rules. Avoid setting policy.default_action.headers: include unless you have reviewed the data, because it can expose credentials, cookies, or user-identifying values and can add high-cardinality span attributes.

When a rule specifies multiple response status code comparisons, all of them must match. For example, the following rule includes response headers only for 4xx responses other than 404:

YAML
ebpf:
  payload_extraction:
    http:
      enrichment:
        enabled: true
        rules:
          - action: include
            type: headers
            scope: response
            match:
              patterns: ["*"]
              response_status_code:
                greater_equals: 400
                less_than: 500
                not_equals: 404

Body obfuscation rules use match.obfuscation_json_paths to select fields in JSON request or response bodies. This field only applies to body rules with the obfuscate action. All matching body rules are combined, and each rule can use its own obfuscation_string; when omitted, the rule uses policy.obfuscation_string.

YAML
ebpf:
  payload_extraction:
    http:
      enrichment:
        enabled: true
        policy:
          default_action:
            headers: exclude
            body: exclude
          obfuscation_string: "***"
        rules:
          - action: obfuscate
            type: body
            scope: response
            obfuscation_string: "PII"
            match:
              response_status_code:
                greater_equals: 200
                less_than: 300
              obfuscation_json_paths:
                - "$.user.email"
                - "$.user.ssn"

Configure data processing buffer sizes

To minimize the performance impact of eBPF data collection, Beyla uses limited payload buffer size capture for various protocols, which gives us the best quality to performance ratio. However, for certain kinds of protocols, especially for some that are mentioned in Payload extraction, it might be beneficial to use larger buffer sizes. HTTP header extraction also requires an HTTP buffer size large enough to include the headers in the captured request or response. The following section describes the configuration options for controlling the auxiliary buffers captured for higher quality trace generation.

YAML section:

ebpf:
  buffer_sizes:
YAML option

Environment variable

DescriptionTypeDefaultMaximum
aerospike

BEYLA_BPF_BUFFER_SIZE_AEROSPIKE

Auxiliary buffer size (in bytes) for Aerospike protocol capture.int(0)8192
http

BEYLA_BPF_BUFFER_SIZE_HTTP

Auxiliary buffer size (in bytes) for HTTP protocol capture.int(0)8192
mysql

BEYLA_BPF_BUFFER_SIZE_MYSQL

Auxiliary buffer size (in bytes) for MYSQL protocol capture.int(0)8192
postgres

BEYLA_BPF_BUFFER_SIZE_POSTGRES

Auxiliary buffer size (in bytes) for POSTGRESQL protocol capture.int(0)8192
aerospike

BEYLA_BPF_BUFFER_SIZE_AEROSPIKE

Auxiliary buffer size (in bytes) for Aerospike capture and response reassembly.int(0)65536
kafka

BEYLA_BPF_BUFFER_SIZE_KAFKA

Auxiliary buffer size (in bytes) for Kafka protocol capture.int(0)65536
mssql

BEYLA_BPF_BUFFER_SIZE_MSSQL

Auxiliary buffer size (in bytes) for MSSQL protocol capture.int(0)65536
tcp

BEYLA_BPF_BUFFER_SIZE_TCP

Auxiliary buffer size (in bytes) for generic TCP protocol capture.int(0)65536

For all buffer size options, 0 disables the auxiliary buffer. The Aerospike buffer enables kernel-side reassembly of the first response frame. This improves status code capture for clients that read the response header and body separately.

Other attributes

YAML section: ebpf

YAML option

Environment variable

DescriptionTypeDefault
heuristic_sql_detect

BEYLA_HEURISTIC_SQL_DETECT

Enable heuristic SQL client detection. See below for details.boolean(false)
mssql_prepared_statements_cache_size

BEYLA_BPF_MSSQL_PREPARED_STATEMENTS_CACHE_SIZE

Maximum number of MSSQL prepared statements whose query text Beyla retains for later executions. Must be greater than 0. Larger caches use more memory; smaller caches can evict statements and omit query text from later execution spans.int(1024)

The heuristic sql detect option lets Beyla detect SQL client requests by inspecting query statements, even if the protocol is not directly supported. By default, Beyla detects SQL client requests by their binary protocol format. If you use a database technology not directly supported by Beyla, you can enable this option to get database client telemetry. This option is not enabled by default, because it can create false positives, for example, if an application sends SQL text for logging through a TCP connection. Currently, Beyla natively supports the Postgres and MySQL binary protocols.

YAML option

Environment variable

DescriptionTypeDefault
max_transaction_time

BEYLA_BPF_MAX_TRANSACTION_TIME

Maximum allowed transaction time. See below for details.string(5m)

The max_transaction_time option configures the distributed tracing transaction correlation maximum allowed time. It specifies the maximum time allowed for two requests to be correlated as parent -> child. This is implemented as a safety measure for limiting the maximum possible trace size, because some programs (for example load generators) keep on generating requests from the same thread in perpetuity, which can generate very large traces. If a child request has started later than the time specified by max_transaction_time, then we consider the two requests not correlated to prevent infinite traces.