tracing-datadog-macros

Crates.iotracing-datadog-macros
lib.rstracing-datadog-macros
version
sourcesrc
created_at2024-12-17 10:04:05.9364+00
updated_at2025-02-25 11:39:32.723976+00
descriptionCollection of convenience macros to use with Datadog tracing
homepage
repositoryhttps://github.com/baz-scm/tracing-datadog-macros
max_upload_size
id1486000
Cargo.toml error:TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Anton Grübel (gruebel)

documentation

README

tracing-datadog-macros

Simplify Datadog tracing in Rust with specialized macros for enhanced code observability.
Baz on GitHub »

Install via Cargo
cargo add tracing-datadog-macros

Libraries Available
Rust: tracing-datadog-macros


Crates.io Rust Release

🚀 What is tracing-datadog-macros?

tracing-datadog-macros is a Rust library providing a collection of procedural macros to simplify and enhance Datadog tracing. It automates span creation and enriches them with context-critical fields, making tracing more actionable and efficient for distributed systems.

With tracing-datadog-macros, your observability improves significantly, offering you crystal-clear insights into your application's behavior.

Available Macros

instrument_custom: General-purpose instrumentation with custom attributes.

instrument_http: Predefined for HTTP spans.

instrument_queue_consumer: Optimized for queue consumers.

instrument_queue_producer: For queue producers.

instrument_sql: SQL-related spans.

instrument_web: Specialized for web spans.

Parse and validate attributes provided by the user. Add required fields like span.type, service.name, and others. Integrate seamlessly with #[tracing::instrument].


Install

Add the crate to your Cargo.toml:

[dependencies]
tracing-datadog-macros = "0.0.2"

Usage

Example

use tracing_datadog_macros::instrument_web;

#[instrument_web(skip(self))]
async fn process_data(&self, data: Data) {
    // Your logic here
}

🔗 Learn More

Falken-Trace-Go library: https://github.com/baz-scm/falken-trace-go

Falken-Trace-py library: https://github.com/baz-scm/falken-trace-py

Blog post: Extending OpenTelemetry to Pinpoint Code Elements

Commit count: 6

cargo fmt