Skip to content

Commit 8bc844a

Browse files
authored
Update opentelemetry-mapping-go/pkg/quantile (#41842)
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Update opentelemetry-mapping-go/pkg/quantile which contains a fix that returns an error on non monotonic bounds <!-- Issue number (e.g. #1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes <!--Describe what testing was performed and which tests were added.--> #### Testing <!--Describe the documentation added.--> #### Documentation <!--Please delete paragraphs that you did not use before submitting.-->
1 parent bfecfaf commit 8bc844a

File tree

7 files changed

+51
-24
lines changed

7 files changed

+51
-24
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: bug_fix
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
7+
component: datadogexporter
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Return an error on non monotonic bounds for histogram metrics. Previously, this would create a panic.
11+
12+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
13+
issues: [41842]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# If your change doesn't affect end users or the exported elements of any package,
21+
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
22+
# Optional: The change log or logs in which this entry should be included.
23+
# e.g. '[user]' or '[user, api]'
24+
# Include 'user' if the change is relevant to end users.
25+
# Include 'api' if there is a change to a library API.
26+
# Default: '[user]'
27+
change_logs: []

connector/datadogconnector/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ require (
3838
go.opentelemetry.io/otel v1.37.0
3939
go.opentelemetry.io/otel/metric v1.37.0
4040
go.uber.org/zap v1.27.0
41-
google.golang.org/protobuf v1.36.6
41+
google.golang.org/protobuf v1.36.7
4242
)
4343

4444
require (
@@ -132,7 +132,7 @@ require (
132132
github.com/DataDog/mmh3 v0.0.0-20210722141835-012dc69a9e49 // indirect
133133
github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata v0.29.1 // indirect
134134
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/logs v0.30.0 // indirect
135-
github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.29.1 // indirect
135+
github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.31.0 // indirect
136136
github.com/DataDog/sketches-go v1.4.7 // indirect
137137
github.com/DataDog/viper v1.14.1-0.20250612143030-1b15c8822ed4 // indirect
138138
github.com/DataDog/zstd v1.5.7 // indirect

connector/datadogconnector/go.sum

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/datadogexporter/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ require (
2323
github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata v0.29.1
2424
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.30.0
2525
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/metrics v0.29.1
26-
github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.29.1
26+
github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.31.0
2727
github.com/open-telemetry/opentelemetry-collector-contrib/connector/datadogconnector v0.131.0
2828
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.131.0
2929
github.com/open-telemetry/opentelemetry-collector-contrib/internal/datadog v0.131.0
@@ -61,7 +61,7 @@ require (
6161
go.opentelemetry.io/otel v1.37.0
6262
go.uber.org/goleak v1.3.0
6363
go.uber.org/zap v1.27.0
64-
google.golang.org/protobuf v1.36.6
64+
google.golang.org/protobuf v1.36.7
6565
gopkg.in/yaml.v3 v3.0.1
6666
gopkg.in/zorkian/go-datadog-api.v2 v2.30.0
6767
)

exporter/datadogexporter/go.sum

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/datadogexporter/integrationtest/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ require (
3434
go.opentelemetry.io/otel/sdk v1.37.0
3535
go.opentelemetry.io/otel/sdk/log v0.13.0
3636
go.opentelemetry.io/otel/trace v1.37.0
37-
google.golang.org/protobuf v1.36.6
37+
google.golang.org/protobuf v1.36.7
3838
)
3939

4040
require (
@@ -136,7 +136,7 @@ require (
136136
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.30.0 // indirect
137137
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/logs v0.30.0 // indirect
138138
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/metrics v0.29.1 // indirect
139-
github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.29.1 // indirect
139+
github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.31.0 // indirect
140140
github.com/DataDog/sketches-go v1.4.7 // indirect
141141
github.com/DataDog/viper v1.14.1-0.20250612143030-1b15c8822ed4 // indirect
142142
github.com/DataDog/zstd v1.5.7 // indirect

exporter/datadogexporter/integrationtest/go.sum

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)