Crates.io | datadog-tracing |
lib.rs | datadog-tracing |
version | 0.2.1 |
source | src |
created_at | 2023-09-20 13:49:26.935902 |
updated_at | 2024-02-10 04:42:43.689307 |
description | utilities for integrating Datadog with tracing |
homepage | https://github.com/will-bank/datadog-tracing |
repository | https://github.com/will-bank/datadog-tracing |
max_upload_size | |
id | 978138 |
size | 23,339 |
Non-official datadog tracing and log correlation for Rust services.
This crate contains the necessary glue to bridge the gap between OpenTelemetry, tracing and Datadog.
datadog-tracing
has the following features:
tracing: utilities for building an OpenTelemetry tracer/layer that sends traces to the Datadog agent
log correlation: a log formatter that converts the trace ID and span ID to the Datadog native format and injects them into the dd.trace_id
and dd.span_id
fields
(more information)
propagation: a utility function to set the Datadog propagator as the global propagator
axum (enabled via the axum
feature): re-exposing the functionality of axum-tracing-opentelemetry
opionated tracing-subscriber init function, configuring logs and the datadog exporter. It's optional, and you can build your own: the functions it uses are exposed.
The lib is configurable via environment variables as following:
env var | default value | description |
---|---|---|
DD_ENABLED | false | Enables the datadog exporter and trace_id/span_id on logs |
DD_SERVICE | Datadog service name | |
DD_AGENT_HOST | localhost | Datadog agent host |
DD_AGENT_PORT | 8126 | Datadog agent port |
RUST_LOG | info | |
AXUM_TRACING_LOG_LEVEL | if DD_ENABLED=true, "trace", otherwise "off" | |
OTEL_LOG_LEVEL | debug |
This lib was highly inspired on ddtrace crate,
which is also a glue between tracing + opentelemetry + datadog.
The main difference is that it exportes using the opentelemetry_otlp
exporter, and this one uses opentelemetry_datadog
,
so there is no need to configure your datadog agent to receive traces via OTLP and the default datadog APM works as expected!
Two commonly used propagation standards are B3
(OpenZipkin's propagation style)
and Jaeger. OpenTelemetry supports both.
Most Datadog SDK's support both B3
and the Datadog native propagation style.
For example, the Python datadog-tracing
library supports B3
but it
needs to be explicitly enabled.
For ease of integration with services written in other languages that use the official Datadog SDK,
we opted for sticking with Datadog-style propagation over B3
. This is set via the
set_global_propagator
function which is automatically called when you create the tracer.
The Python library takes care of propagation of the trace context automatically. Unfortunately, we need to do this manually in Rust.
Arguably, propagation in HTTP requests is the most common need.
This crate does not provide any additional support, but we recommend using
the reqwest-middleware crate
to inject the necessary headers when using reqwest
.
If you set the global propagator using datadog-tracing
, it will work out of the box.
use datadog-tracing::set_global_propagator;
use reqwest_middleware::{ClientBuilder, ClientWithMiddleware};
use reqwest_tracing::TracingMiddleware;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let (_guard, tracer_shutdown) = datadog_tracing::init()?;
client = get_http_client();
// setup your app and inject the client
}
fn get_http_client() -> ClientWithMiddleware {
ClientBuilder::new(reqwest::Client::new())
.with(TracingMiddleware::default())
.build()
}