Skip to content

Commit

Permalink
Simplify OTel Agent default pipelines (#1489)
Browse files Browse the repository at this point in the history
  • Loading branch information
krlv authored Oct 8, 2024
1 parent ffb4c2f commit bc3e46e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
6 changes: 6 additions & 0 deletions charts/datadog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Datadog changelog

## 3.74.0

* Simplify OTel Agent OOTB pipelines:
* Remove `traces/otlp` pipeline from the default OTel Agent config
* Add `infaattributes` processor and `datadog` exporter to the `traces` pipeline.

## 3.73.3

* Fix a few typos on OTel Agent configs.
Expand Down
2 changes: 1 addition & 1 deletion charts/datadog/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: datadog
version: 3.73.3
version: 3.74.0
appVersion: "7"
description: Datadog Agent
keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/datadog/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Datadog

![Version: 3.73.3](https://img.shields.io/badge/Version-3.73.3-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
![Version: 3.74.0](https://img.shields.io/badge/Version-3.74.0-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)

[Datadog](https://www.datadoghq.com/) is a hosted infrastructure monitoring platform. This chart adds the Datadog Agent to all nodes in your cluster via a DaemonSet. It also optionally depends on the [kube-state-metrics chart](https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-state-metrics). For more information about monitoring Kubernetes with Datadog, please refer to the [Datadog documentation website](https://docs.datadoghq.com/agent/basic_agent_usage/kubernetes/).

Expand Down
6 changes: 1 addition & 5 deletions charts/datadog/templates/_otel_agent_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,9 @@ otel-config.yaml: {{- if .Values.datadog.otelCollector.config }} {{ toYaml .Valu
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [datadog/connector]
traces/otlp:
receivers: [otlp]
processors: [infraattributes, batch]
exporters: [datadog]
exporters: [datadog, datadog/connector]
metrics:
receivers: [otlp, datadog/connector, prometheus]
processors: [infraattributes, batch]
Expand Down

0 comments on commit bc3e46e

Please sign in to comment.