dd-tracing-layer

license crates.io docs.rs

A tracing layer that sends logs to the Datadog Log API.

It's mainly useful when you don't have access to your infrastructure and you cannot use the Datadog Agent or any other mean.

Requirements

You'll need a Datadog API Key for everything to work.

Endpoint

This crate uses the v2 logs endpoints and, by default, will try to send the logs to the US1 region.

You can easily change the region or provide a custom URL if needed.

Example

Here's a simple example of how to set it up and use it:

```rust use ddtracinglayer::DatadogOptions; use tracing_subscriber::prelude::*; use tracing::{instrument, subscriber};

[instrument]

fn log(msg: &'static str) { tracing::info!("your message: {}", msg); }

fn main() { let options = DatadogOptions::new("my-service", "my-datadog-api-key") .withtags("env:dev"); let dd = ddtracinglayer::create(options); let subscriber = tracingsubscriber::registry() .with(tracingsubscriber::fmt::Layer::new().json()) .with(dd); let _s = subscriber::setdefault(subscriber); log("hello world!"); } ```

Caveats

The layer will send the logs either 5 seconds after the last log is received or when the buffer arrives to 1000 logs. This is basically due to a limitation in the Datadog API.