From 511b69f50b05f749793c061d0a42a2bf2e187c0b Mon Sep 17 00:00:00 2001 From: Stanley Liu Date: Fri, 8 Dec 2023 10:15:40 -0500 Subject: [PATCH 1/3] Update version to v0.8.4 --- versions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.yaml b/versions.yaml index 54fd135e..d5acafe9 100644 --- a/versions.yaml +++ b/versions.yaml @@ -5,7 +5,7 @@ module-sets: pkgs: - version: v0.8.3 + version: v0.8.4 modules: - github.com/DataDog/opentelemetry-mapping-go/pkg/quantile - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes From ef5a2f9d52605c42a05c0f07dfff39530a6212f9 Mon Sep 17 00:00:00 2001 From: Stanley Liu Date: Fri, 8 Dec 2023 10:16:34 -0500 Subject: [PATCH 2/3] Update changelog --- .chloggen/main.yaml | 11 ----------- .chloggen/mx-psi_os.type-support.yaml | 16 ---------------- .../stanley.liu_remove-jvm-gc-duration.yaml | 16 ---------------- CHANGELOG.md | 11 +++++++++++ 4 files changed, 11 insertions(+), 43 deletions(-) delete mode 100644 .chloggen/main.yaml delete mode 100755 .chloggen/mx-psi_os.type-support.yaml delete mode 100755 .chloggen/stanley.liu_remove-jvm-gc-duration.yaml diff --git a/.chloggen/main.yaml b/.chloggen/main.yaml deleted file mode 100644 index a393f7bb..00000000 --- a/.chloggen/main.yaml +++ /dev/null @@ -1,11 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: enhancement - -# The name of the component (e.g. pkg/quantile) -component: pkg/otlp/logs - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: DataDog log timestamp (ie. '@timestamp') now includes milliseconds. - -# The PR related to this change -issues: [152] diff --git a/.chloggen/mx-psi_os.type-support.yaml b/.chloggen/mx-psi_os.type-support.yaml deleted file mode 100755 index 12d9f98b..00000000 --- a/.chloggen/mx-psi_os.type-support.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: enhancement - -# The name of the component (e.g. pkg/quantile) -component: pkg/inframetadata - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Add support for GOOS and GOARCH values - -# The PR related to this change -issues: [185] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: diff --git a/.chloggen/stanley.liu_remove-jvm-gc-duration.yaml b/.chloggen/stanley.liu_remove-jvm-gc-duration.yaml deleted file mode 100755 index 91449ec3..00000000 --- a/.chloggen/stanley.liu_remove-jvm-gc-duration.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: bug_fix - -# The name of the component (e.g. pkg/quantile) -component: pkg/otlp/metrics - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Removes runtime metric mapping for process.runtime.jvm.gc.duration -> jvm.gc.parnew.time - -# The PR related to this change -issues: [213] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: diff --git a/CHANGELOG.md b/CHANGELOG.md index f568ece7..395ad3de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ +## v0.8.4 + +### 💡 Enhancements 💡 + +- `pkg/otlp/logs`: DataDog log timestamp (ie. '@timestamp') now includes milliseconds. (#152) +- `pkg/inframetadata`: Add support for GOOS and GOARCH values (#185) + +### 🧰 Bug fixes 🧰 + +- `pkg/otlp/metrics`: Removes runtime metric mapping for process.runtime.jvm.gc.duration -> jvm.gc.parnew.time (#213) + ## v0.8.3 ### 💡 Enhancements 💡 From e82cb3edb00a8dbcffccc011acaecde25c7a2eee Mon Sep 17 00:00:00 2001 From: Stanley Liu Date: Fri, 8 Dec 2023 10:16:41 -0500 Subject: [PATCH 3/3] Prepare pkgs for version v0.8.4 --- pkg/inframetadata/go.mod | 2 +- pkg/otlp/logs/go.mod | 2 +- pkg/otlp/metrics/go.mod | 6 +++--- pkg/quantile/go.mod | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/inframetadata/go.mod b/pkg/inframetadata/go.mod index b3a17be6..78393564 100644 --- a/pkg/inframetadata/go.mod +++ b/pkg/inframetadata/go.mod @@ -3,7 +3,7 @@ module github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata go 1.20 require ( - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.3 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.4 github.com/stretchr/testify v1.8.4 go.opentelemetry.io/collector/pdata v1.0.0 go.opentelemetry.io/collector/semconv v0.90.1 diff --git a/pkg/otlp/logs/go.mod b/pkg/otlp/logs/go.mod index c1b4b460..e6f51165 100644 --- a/pkg/otlp/logs/go.mod +++ b/pkg/otlp/logs/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/DataDog/datadog-api-client-go/v2 v2.13.0 - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.3 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.4 github.com/stretchr/testify v1.8.4 go.opentelemetry.io/collector/pdata v1.0.0 go.opentelemetry.io/collector/semconv v0.90.1 diff --git a/pkg/otlp/metrics/go.mod b/pkg/otlp/metrics/go.mod index c37b6fdc..f65f25db 100644 --- a/pkg/otlp/metrics/go.mod +++ b/pkg/otlp/metrics/go.mod @@ -4,9 +4,9 @@ go 1.20 require ( github.com/DataDog/datadog-agent/pkg/proto v0.50.0-rc.1 - github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.8.3 - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.3 - github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.8.3 + github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.8.4 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.4 + github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.8.4 github.com/DataDog/sketches-go v1.4.3 github.com/golang/protobuf v1.5.3 github.com/lightstep/go-expohisto v1.0.0 diff --git a/pkg/quantile/go.mod b/pkg/quantile/go.mod index fb9196c0..1f5b1f60 100644 --- a/pkg/quantile/go.mod +++ b/pkg/quantile/go.mod @@ -3,7 +3,7 @@ module github.com/DataDog/opentelemetry-mapping-go/pkg/quantile go 1.20 require ( - github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.8.3 + github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.8.4 github.com/DataDog/sketches-go v1.4.3 github.com/dustin/go-humanize v1.0.1 github.com/stretchr/testify v1.8.4