- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
OTel Collector Contrib version 0.95.0 disables Trace Metrics computation in the Datadog Exporter by default.
In versions 0.95.0 and later, the calculation of Trace Metrics is handled by the Datadog Connector. This change ensures that:
To continue receiving Trace Metrics, configure the Datadog Connector in the OpenTelemetry Collector.
Before proceeding with the upgrade to the OTel Collector versions 0.95.0+:
To upgrade:
datadog/connector
in the list of configured connectors.datadog/connector
and datadog/exporter
in the list of the configured exporters in your OpenTelemetry traces
pipeline.datadog/connector
in the list of the configured receivers in your OpenTelemetry metrics
pipeline.datadog/exporter
in the list of the configured exporters in your OpenTelemetry metrics
pipeline.Below is an example of an OpenTelemetry configuration before and after migration.
Before migration:
// Legacy default configuration before v0.95.0
receivers:
otlp:
protocols:
http:
grpc:
processors:
batch:
exporters:
datadog:
api:
key: <api key here>
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [datadog/exporter]
After migration:
// New default configuration after v0.95.0
receivers:
otlp:
protocols:
http:
endpoint: 0.0.0.0:4318
grpc:
endpoint: 0.0.0.0:4317
processors:
batch:
connectors:
datadog/connector:
exporters:
datadog/exporter:
api:
key: <api key here>
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [datadog/connector, datadog/exporter]
metrics:
receivers: [datadog/connector, otlp] // The connector provides the metrics to your metrics pipeline
processors: [batch]
exporters: [datadog/exporter]
If you’re running a vendor-specific OpenTelemetry distribution that does not include the Datadog Connector, revert to the previous Trace Connector behavior by disabling the exporter.datadogexporter.DisableAPMStats
feature gate.
otelcol --config=config.yaml --feature-gates=-exporter.datadogexporter.DisableAPMStats
For questions or assistance, contact Datadog support.