Distributed traces with OBI
আপনি এই পৃষ্ঠার ইংরেজি সংস্করণ দেখছেন কারণ এটি এখনও সম্পূর্ণভাবে অনুবাদ করা হয়নি। সাহায্য করতে আগ্রহী? দেখুন Contributing।
Introduction
OBI supports distributed traces for applications with some limitations and kernel version restrictions.
Distributed tracing is implemented through the propagation of the
W3C traceparent header value. OBI
reads incoming context automatically. Outgoing network-level context propagation
is disabled by default and must be enabled as described below.
With the applicable propagation mode enabled, OBI reads incoming trace context,
tracks program execution, and adds traceparent to outgoing HTTP or gRPC
requests. If an application already added traceparent, OBI uses that value
instead of its own generated context. If OBI can’t find incoming context, it
generates one according to the W3C specification.
For details about how OBI chooses the parent request when work moves across threads, goroutines, tasks, or event loops, see trace context association.
Compatibility
OBI supports distributed tracing and context propagation in the following configurations:
| Area | Supported versions or environments | Notes |
|---|---|---|
| Network-level HTTP/1 propagation | Linux environments that meet the OBI compatibility requirements | Works across programming languages. For HTTPS, propagation is limited to other OBI-instrumented services and can be disrupted by proxies or L7 load balancers. |
| Network-level gRPC propagation | gRPC 1.0+ over HTTP/2 | Uses per-stream HPACK traceparent headers across languages. Non-Go persistent connections established before OBI starts might not be recognized. |
| Go library-level context propagation | Go 1.18+ | Supports goroutine context propagation up to 6 nested goroutine levels. This distributed tracing feature has a higher minimum version than general Go library-level instrumentation. |
| Node.js async hooks | Node.js 8.0+ | Custom handling of SIGUSR1 can interfere with context propagation. |
| Ruby Puma | Ruby applications served by Puma 5.0+ | Context propagation support requires the Puma server. |
| Java thread pools | JDK 8+ | No additional documented runtime constraints. |
| Python asyncio | Python 3.9+ with uvloop | Context propagation support requires the uvloop event loop. |
The versions listed here are the versions OBI explicitly supports for
distributed tracing features. Other versions might also work, but they are not
part of the documented support scope unless stated otherwise. In particular, the
Go 1.18+ requirement here applies to distributed tracing and context
propagation; other OBI Go library-level instrumentation has a lower minimum
version.
Implementation
The trace context propagation is implemented in two different ways:
- By writing the outgoing header information at network level
- By writing the header information at library level for Go
Depending on the programming language your service is written in, OBI uses one or both approaches of context propagation. We use these multiple approaches to implement context propagation, because writing memory with eBPF depends on the kernel configuration and the Linux system capabilities granted to OBI. For more details on this topic, see our KubeCon NA 2024 talk So You Want to Write Memory with eBPF?.
The context propagation at network level is disabled by default and can
be enabled by setting the environment variable
OTEL_EBPF_BPF_CONTEXT_PROPAGATION=all or by modifying the OBI configuration
file:
ebpf:
context_propagation: 'all'
Context propagation at network level
The context propagation at network level is implemented by writing the trace context information in the outgoing HTTP headers as well at the TCP/IP packet level. HTTP context propagation is fully compatible with any other OpenTelemetry based tracing library. This means that OBI instrumented services correctly propagate the trace information, when sending to and receiving from services instrumented with the OpenTelemetry SDKs. We use Linux Traffic Control (TC) to perform the adjustment of the network packets, which requires that other eBPF programs that use Linux Traffic Control chain properly with OBI. For special considerations regarding Cilium CNI, consult our Cilium Compatibility guide.
For TLS encrypted traffic (HTTPS), OBI is unable to inject the trace information in the outgoing HTTP headers and instead it injects the information at TCP/IP packet level. Because of this limitation, OBI is only able to send the trace information to other OBI instrumented services. L7 proxies and load balancers disrupt the TCP/IP context propagation, because the original packets are discarded and replayed downstream. Parsing incoming trace context information from OpenTelemetry SDK instrumented services still works.
For gRPC, OBI injects a per-stream traceparent HPACK header. This works across
programming languages and preserves distinct trace contexts for concurrent
HTTP/2 streams. OBI does not use TCP options for gRPC because TCP options are
connection-scoped and can’t represent multiple multiplexed streams. Generic
non-gRPC HTTP/2 context propagation remains limited to Go library
instrumentation.
If you need finer control, context_propagation also accepts headers, tcp,
and headers,tcp. The former http alias has been removed. The deprecated ip
value has no effect.
This type of context propagation works for any programming language and doesn’t
require that OBI runs in privileged mode or has CAP_SYS_ADMIN granted. For
more details, see the
Distributed traces and context propagation
configuration section.
Kubernetes Configuration
The recommended way to deploy OBI on Kubernetes with distributed tracing support
at network level is as DaemonSet.
The following Kubernetes configuration must be used:
- OBI must be deployed as a
DaemonSetwith host network access (hostNetwork: true). - The
/sys/fs/cgrouppath from the host must be volume mounted as local/sys/fs/cgrouppath. - The
CAP_NET_ADMINcapability must be granted to the OBI container.
The following YAML snippet shows an example OBI deployment configuration:
spec:
serviceAccount: obi
hostPID: true # <-- Important. Required in DaemonSet mode so OBI can discover all monitored processes
hostNetwork: true # <-- Important. Required in DaemonSet mode so OBI can see all network packets
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: obi
resources:
limits:
memory: 120Mi
terminationMessagePolicy: FallbackToLogsOnError
image: 'docker.io/otel/ebpf-instrument:main'
imagePullPolicy: 'Always'
env:
- name: OTEL_EXPORTER_OTLP_ENDPOINT
value: 'http://otelcol:4318'
- name: OTEL_EBPF_KUBE_METADATA_ENABLE
value: 'autodetect'
- name: OTEL_EBPF_CONFIG_PATH
value: '/config/obi-config.yml'
securityContext:
runAsUser: 0
readOnlyRootFilesystem: true
capabilities:
add:
- BPF # <-- Important. Required for most eBPF probes to function correctly.
- SYS_PTRACE # <-- Important. Allows OBI to access the container namespaces and inspect executables.
- NET_RAW # <-- Important. Allows OBI to use socket filters for http requests.
- CHECKPOINT_RESTORE # <-- Important. Allows OBI to open ELF files.
- DAC_READ_SEARCH # <-- Important. Allows OBI to open ELF files.
- PERFMON # <-- Important. Allows OBI to load BPF programs.
- NET_ADMIN # <-- Important. Allows OBI to inject HTTP and TCP context propagation information.
volumeMounts:
- name: cgroup
mountPath: /sys/fs/cgroup # <-- Important. Allows OBI to monitor all newly sockets to track outgoing requests.
- mountPath: /config
name: obi-config
tolerations:
- effect: NoSchedule
operator: Exists
- effect: NoExecute
operator: Exists
volumes:
- name: obi-config
configMap:
name: obi-config
- name: cgroup
hostPath:
path: /sys/fs/cgroup
If /sys/fs/cgroup is not mounted as a local volume path for the OBI
DaemonSet some requests may not have their context propagated. We use this
volume path to listen to newly created sockets.
Kernel version limitations
The network level context propagation incoming headers parsing generally requires kernel 5.17 or newer for the addition and use of BPF loops.
Some patched kernels, such as RHEL 9.2, may have this functionality ported back. Setting OTEL_EBPF_OVERRIDE_BPF_LOOP_ENABLED skips kernel checks in the case your kernel includes the functionality but is lower than 5.17.
Go context propagation by instrumenting at library level
This type of context propagation is only supported for Go applications and uses
eBPF user memory write support (bpf_probe_write_user). The advantage of this
approach is that it works for HTTP and HTTPS. For HTTP/2 and gRPC, OBI can
inject context only on new connections when HTTPS isn’t used; reused HTTP/2/gRPC
connections are not supported yet. The use of bpf_probe_write_user requires
the OBI is granted CAP_SYS_ADMIN or it’s configured to run as privileged
container.
Integration with Go manual instrumentation
OBI integrates automatically with manual spans using the Auto SDK. See the docs on the Auto SDK to learn more.
Kernel integrity mode limitations
In order to write the traceparent value in outgoing HTTP/gRPC request headers,
OBI needs to write to the process memory using the
bpf_probe_write_user
eBPF helper. Since kernel 5.14 (with fixes backported to the 5.10 series) this
helper is protected (and unavailable to BPF programs) if the Linux Kernel is
running in integrity lockdown mode. Kernel integrity mode is typically
enabled by default if the Kernel has
Secure Boot enabled, but it can also
be enabled manually.
OBI automatically checks if it can use the bpf_probe_write_user helper, and
enables context propagation only if it’s allowed by the kernel configuration.
Verify the Linux Kernel lockdown mode by running the following command:
cat /sys/kernel/security/lockdown
If that file exists and the mode is anything other than [none], OBI cannot
perform context propagation and distributed tracing is disabled.
Distributed tracing for Go in containerized environments (including Kubernetes)
Because of the Kernel lockdown mode restrictions, Docker and Kubernetes
configuration files should mount the /sys/kernel/security/ volume for the
OBI docker container from the host system. This way OBI can correctly
determine the Linux Kernel lockdown mode. Here’s an example Docker compose
configuration, which ensures OBI has sufficient information to determine the
lockdown mode:
services:
...
obi:
image: 'docker.io/otel/ebpf-instrument:main'
environment:
OTEL_EBPF_CONFIG_PATH: "/configs/obi-config.yml"
volumes:
- /sys/kernel/security:/sys/kernel/security
- /sys/fs/cgroup:/sys/fs/cgroup
If the /sys/kernel/security/ volume is not mounted, OBI assumes that the Linux
Kernel is not running in integrity mode.
Go channel span links
OBI emits experimental receiver-side span links for supported work handoffs through Go channels. When both the send and receive sides have active OBI-generated spans, the receiver span links to the sender span. OBI doesn’t change trace IDs, parent-child relationships, or the sender span.
This behavior is enabled automatically with Go-specific tracing when OBI can
resolve the target binary’s channel runtime offsets. Direct unbuffered and
buffered handoffs through runtime.chansend1, runtime.chanrecv1, and
runtime.chanrecv2 are supported. Channel operations through select aren’t
supported. Disable Go-specific tracers to disable these probes; there is no
separate channel-link option.
OBI honors OTEL_SPAN_LINK_COUNT_LIMIT and drops invalid, duplicate, and
self-referential links.
Python asyncio with uvloop
Starting with v0.7.0, OBI supports context propagation for Python asyncio
workloads running on uvloop. This
enables distributed tracing of asynchronous Python services that use the
uvloop event loop, in addition to the standard asyncio support.
The context propagation at network level applies to Python applications running
on uvloop, allowing OBI to automatically instrument and propagate trace
context for asynchronous operations. No additional configuration is required
beyond enabling context propagation as described in the
introduction.
To use OBI with Python asyncio and uvloop, ensure your Python application is
configured to use uvloop as the event loop implementation.
মূল্যায়ন
এই পৃষ্ঠাটি কি সহায়ক ছিল?
Thank you. Your feedback is appreciated!
Please let us know how we can improve this page. Your feedback is appreciated!