Skip to content

Latest commit

 

History

History
100 lines (63 loc) · 2.2 KB

File metadata and controls

100 lines (63 loc) · 2.2 KB

Datadog Span Exporter

Deprecated

This exporter has been deprecated. To export your OTLP traces from OpenTelemetry SDK directly to Datadog Agent, please refer to OTLP Ingest in Datadog Agent .

These examples show how to use OpenTelemetry to send tracing data to Datadog.

Basic Example

  • Installation
pip install opentelemetry-api
pip install opentelemetry-sdk
pip install opentelemetry-exporter-datadog
  • Start Datadog Agent
docker run --rm \
    -v /var/run/docker.sock:/var/run/docker.sock:ro \
    -v /proc/:/host/proc/:ro \
    -v /sys/fs/cgroup/:/host/sys/fs/cgroup:ro \
    -p 127.0.0.1:8126:8126/tcp \
    -e DD_API_KEY="<DATADOG_API_KEY>" \
    -e DD_APM_ENABLED=true \
    datadog/agent:latest
  • Run example
python basic_example.py
python basic_example.py

Distributed Example

  • Installation
pip install opentelemetry-api
pip install opentelemetry-sdk
pip install opentelemetry-exporter-datadog
pip install opentelemetry-instrumentation
pip install opentelemetry-instrumentation-flask
pip install flask
pip install requests
  • Start Datadog Agent
docker run --rm \
    -v /var/run/docker.sock:/var/run/docker.sock:ro \
    -v /proc/:/host/proc/:ro \
    -v /sys/fs/cgroup/:/host/sys/fs/cgroup:ro \
    -p 127.0.0.1:8126:8126/tcp \
    -e DD_API_KEY="<DATADOG_API_KEY>" \
    -e DD_APM_ENABLED=true \
    datadog/agent:latest
  • Start server
opentelemetry-instrument python server.py
  • Run client
opentelemetry-instrument python client.py testing
  • Run client with parameter to raise error
opentelemetry-instrument python client.py error
  • Run Datadog instrumented client

The OpenTelemetry instrumented server is set up with propagation of Datadog trace context.

pip install ddtrace
ddtrace-run python datadog_client.py testing