Skip to content

Commit

Permalink
[exporter/datadog] Use min and max fields from histograms (open-telem…
Browse files Browse the repository at this point in the history
…etry#16048)

* [exporter/datadog] Bump modules to use min/max

* Add release note
  • Loading branch information
mx-psi authored and shalper2 committed Dec 6, 2022
1 parent 98a8686 commit 58d9a94
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 27 deletions.
11 changes: 11 additions & 0 deletions .chloggen/mx-psi_min-max-fix.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: enhancement

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: datadogexporter

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Use minimum and maximum fields from delta OTLP Histograms and OTLP ExponentialHistograms when available.

# One or more tracking issues related to the change
issues: [16048]
6 changes: 3 additions & 3 deletions cmd/configschema/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ require (
github.com/ClickHouse/clickhouse-go/v2 v2.3.0 // indirect
github.com/DataDog/agent-payload/v5 v5.0.39 // indirect
github.com/DataDog/datadog-agent/pkg/obfuscate v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/otlp/model v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/quantile v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/otlp/model v0.41.0-rc.1.0.20221103113926-3b037494a38c // indirect
github.com/DataDog/datadog-agent/pkg/quantile v0.41.0-rc.1.0.20221103113926-3b037494a38c // indirect
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/trace v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/trace v0.41.0-rc.1.0.20221103113926-3b037494a38c // indirect
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/log v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.41.0-rc.1 // indirect
Expand Down
12 changes: 6 additions & 6 deletions cmd/configschema/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions exporter/datadogexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ go 1.18

require (
github.com/DataDog/agent-payload/v5 v5.0.39
github.com/DataDog/datadog-agent/pkg/otlp/model v0.41.0-rc.1
github.com/DataDog/datadog-agent/pkg/quantile v0.41.0-rc.1
github.com/DataDog/datadog-agent/pkg/trace v0.41.0-rc.1
github.com/DataDog/datadog-agent/pkg/otlp/model v0.41.0-rc.1.0.20221103113926-3b037494a38c
github.com/DataDog/datadog-agent/pkg/quantile v0.41.0-rc.1.0.20221103113926-3b037494a38c
github.com/DataDog/datadog-agent/pkg/trace v0.41.0-rc.1.0.20221103113926-3b037494a38c
github.com/DataDog/datadog-api-client-go/v2 v2.4.0
github.com/DataDog/gohai v0.0.0-20220718130825-1776f9beb9cc
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v0.34.1
Expand Down
12 changes: 6 additions & 6 deletions exporter/datadogexporter/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,10 @@ require (
github.com/ClickHouse/clickhouse-go/v2 v2.3.0 // indirect
github.com/DataDog/agent-payload/v5 v5.0.39 // indirect
github.com/DataDog/datadog-agent/pkg/obfuscate v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/otlp/model v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/quantile v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/otlp/model v0.41.0-rc.1.0.20221103113926-3b037494a38c // indirect
github.com/DataDog/datadog-agent/pkg/quantile v0.41.0-rc.1.0.20221103113926-3b037494a38c // indirect
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/trace v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/trace v0.41.0-rc.1.0.20221103113926-3b037494a38c // indirect
github.com/DataDog/datadog-agent/pkg/util/cgroups v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/log v0.41.0-rc.1 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.41.0-rc.1 // indirect
Expand Down
12 changes: 6 additions & 6 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 58d9a94

Please sign in to comment.