Datadog OTEL eBPF profiler.
Warning
This profiler is currently experimental and has not undergone thorough testing. Features and functionality may be unstable or incomplete.
For a more stable and tested alternative, we strongly recommend using otel-profiling-agent
in the meantime.
Use this repository at your own risk.
dd-otel-host-profiler is based on open-telemetry/opentelemetry-ebpf-profiler. Please refer to our documentation for a list of officially supported Datadog profilers.
This profiler has support for sending profiling data to the Datadog backend via the Datadog Agent. We are active members of the OpenTelemetry Profiling SIG that is working on the OpenTelemetry profiling signal. However, the signal is still under active development, so the Datadog Agent is required until we release our support for directly ingesting the data using OTLP.
dd-otel-host-profiler only runs on Linux, and requires the following Linux kernel versions:
- Kernel version 4.19 or newer for amd64/x86_64
- Kernel version 5.5 or newer for arm64/aarch64
If the host is running workloads inside containers, it is recommended to run the profiler inside a container as well. A container image is available at https://github.com/DataDog/dd-otel-host-profiler/pkgs/container/dd-otel-host-profiler/.
If you're using Kubernetes, please follow the documentation here: Running in Kubernetes.
If you're directly using Docker, please follow the documentation here: Running in Docker.
If you're not using a container runtime, please check this section to run the profiler directly on the host: Running on the host.
For compiled languages (C/C++/Rust/Go), the profiler can upload local symbols (when available) to Datadog for symbolication. Symbols need to be available locally (unstripped binaries).
This feature requires being part of our private beta program for the OpenTelemetry profiler. Please reach out to Datadog support to get access.
To enable local symbol upload:
- Set the
DD_HOST_PROFILING_EXPERIMENTAL_UPLOAD_SYMBOLS
environment variable totrue
. - Provide a Datadog API key through the
DD_API_KEY
environment variable. - Provide a Datadog APP key through the
DD_APP_KEY
environment variable. - Set the
DD_SITE
environment variable to your Datadog site (e.g.datadoghq.com
,datadoghq.eu
,us5.datadoghq.com
, ...).
A docker-compose.yml
file is provided to help run the profiler in a container for local development.
First, create a .env
file with the following content:
DD_SITE=datadoghq.com # optional, defaults to "datadoghq.com"
DD_SERVICE=my-service # optional, defaults to "dd-otel-host-profiler"
DD_HOST_PROFILING_UPLOAD_PERIOD=10s # optional, defaults to 60s
DD_HOST_PROFILING_EXPERIMENTAL_UPLOAD_SYMBOLS=true # optional, defaults to false
DD_API_KEY=your-api-key # required (not needed on a Datadog workspace)
DD_APP_KEY=your-app-key # required (not needed on a Datadog workspace)
Then, you can run the profiler with the following command:
docker-compose up
The profiler will submit profiling data to the Datadog Agent using the value of DD_SERVICE as the service name.
This project is licensed under the Apache License 2.0 (Apache-2.0). Apache License 2.0
The eBPF source code is licensed under the GPL 2.0 license. GPL 2.0