Correlate OpenTelemetry Traces and DBM
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
Overview
Datadog Database Monitoring (DBM) correlates backend traces from your OpenTelemetry-instrumented application with detailed database performance data. This allows you to link spans from your application to related query metrics and execution plans, helping you identify the exact queries that are slowing down your services.
Requirements
Before you begin, ensure you have configured unified service tagging. This is required for all data correlation in Datadog.
Setup
To correlate traces and metrics, you must:
Instrument database spans: Add specific OpenTelemetry attributes to your database spans to enable correlation with DBM.
Configure trace ingestion path: Enable the correct feature gate on your Collector or Agent to ensure database spans are properly processed for DBM.
Step 1: Instrument your database spans
For DBM correlation to work, your database spans must include the following attributes.
Attribute | Required? | Description | Example |
---|
db.system | Yes | The database technology. | postgres , mysql , sqlserver |
db.statement | Yes | The raw SQL query text. Datadog uses this to set the span’s resource name after obfuscation and normalization. | SELECT * FROM users WHERE id = ? |
span.type | Yes | (Datadog-specific) Identifies and processes database spans. Usually derived automatically by the OpenTelemetry SDK or Datadog Agent. Only set manually when spans are created directly with the SDK. | sql , postgres , mysql , sql.query |
db.name | No | The logical database or schema name being queried. | user_accounts |
The span.type
attribute is a Datadog-specific convention for identifying and processing database spans.
When using OpenTelemetry auto-instrumentation or the Datadog Agent, this attribute is set automatically.
Only add it manually if you are instrumenting spans directly with the SDK.
Using auto instrumentation
To get started, instrument your application using the appropriate OpenTelemetry auto-instrumentation library for your language. For setup instructions, see the official OpenTelemetry instrumentation documentation.
These libraries automatically add the required db.system
and db.statement
attributes. The Datadog Agent or SDK then derives span.type
automatically, so no manual attribute configuration is needed.
If your environment involves a custom database client or spans not recognized by the library, you can enrich them using the OpenTelemetry Collector’s attributes
processor.
For example, you can add span.type: sql
to any span that has the db.system
attribute:
processors:
attributes/add_span_type:
actions:
- key: span.type
value: "sql"
action: insert
# Apply this action only to spans that have the db.system attribute
from_context: span
when:
- span.attributes["db.system"] != nil
service:
pipelines:
traces:
# Add the processor to your traces pipeline
processors: [..., attributes/add_span_type, ...]
Using manual instrumentation
If you are manually creating spans with the OpenTelemetry SDK, you can set the attributes directly in your code. For more information, see the OpenTelemetry documentation.
The following is a conceptual example of manual instrumentation using Python’s OpenTelemetry SDK:
from opentelemetry import trace
tracer = trace.get_tracer("my-app.instrumentation")
# When making a database call, create a span and set attributes
with tracer.start_as_current_span("postgres.query") as span:
# Set attributes required for DBM correlation
span.set_attribute("span.type", "sql")
span.set_attribute("db.system", "postgres")
span.set_attribute("db.statement", "SELECT * FROM users WHERE id = ?")
span.set_attribute("db.name", "user_accounts")
# Your actual database call would go here
# db_cursor.execute("SELECT * FROM users WHERE id = %s", (user_id,))
Depending on how you send traces to Datadog, you may need to enable specific feature gates to ensure database spans are processed correctly.
If you are using the Datadog Helm chart (v3.107.0 or later), set the feature gate in your values.yaml
:
datadog:
otelCollector:
featureGates: "datadog.EnableReceiveResourceSpansV2,datadog.EnableOperationAndResourceNameV2"
When starting the Collector, you must enable the correct feature gate for your version.
Collector v0.124.0 and later
For recent versions of the Collector, enable the datadog.EnableOperationAndResourceNameV2
feature gate:
otelcontribcol --config=config.yaml \
--feature-gates=datadog.EnableOperationAndResourceNameV2
Collector v0.118.0 - v0.123.0
For older versions of the Collector, both of the following feature gates are required:
otelcontribcol --config=config.yaml \
--feature-gates=datadog.EnableReceiveResourceSpansV2,datadog.EnableOperationAndResourceNameV2
In your Datadog Agent configuration, ensure the DD_APM_FEATURES
environment variable includes enable_operation_and_resource_name_logic_v2
.
After your application is sending traces, you can see the correlation in the APM Trace View:
- Navigate to APM > Traces.
- Find and click on a trace from your instrumented service.
- In the trace’s flame graph, select a database span (for example, a span with
span.type: sql
) - In the details panel, click the SQL Queries tab. You should see performance metrics and execution plans for the query.
Troubleshooting
If you don’t see the expected correlation between your APM traces and DBM, it’s typically due to a missing or incorrect configuration. Check the following common causes:
- Missing attributes: The database span must contain
db.system
and db.statement
. The span.type
attribute is also required but is typically derived automatically by Datadog. - Incorrect unified service tagging: The
service
tag on your traces must match the service
tag on your database host metrics. Verify that unified service tagging is configured correctly. - The SQL query may not be parsable: The correlation relies on Datadog’s ability to parse the SQL query from the
db.statement
attribute. If the query uses non-standard or complex syntax, parsing may fail. If you suspect this is the case, contact Datadog support for assistance. - The correct feature gates must be enabled for your specific trace ingestion path as described in the setup steps.
Further reading