From 9058c4920391893ad66b896b61bb750eefa5a372 Mon Sep 17 00:00:00 2001 From: Preston Vasquez Date: Wed, 23 Oct 2024 10:42:00 -0600 Subject: [PATCH] Update changelog --- CHANGELOG.md | 1 + .../go.mongodb.org/mongo-driver/mongo/otelmongo/mongo.go | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b5c995c081..1671b9dc1e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Transform nil attribute values to `log.Value` zero value instead of `log.StringValue("")` in `go.opentelemetry.io/contrib/bridges/otelslog`. (#6246) - Fix `NewClientHandler` so that `rpc.client.request.*` metrics measure requests instead of responses and `rpc.client.responses.*` metrics measure responses instead of requests in `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc`. (#6250) - Fix issue in `go.opentelemetry.io/contrib/config` causing `otelprom.WithResourceAsConstantLabels` configuration to not be respected. (#6260) +- Bump otelmongo semconv from 1.17.0 to 1.24.0. (#6272) diff --git a/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/mongo.go b/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/mongo.go index 141e1eeaa81..554f9b54238 100644 --- a/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/mongo.go +++ b/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/mongo.go @@ -39,9 +39,9 @@ func (m *monitor) Started(ctx context.Context, evt *event.CommandStartedEvent) { semconv.DBSystemMongoDB, semconv.DBOperation(evt.CommandName), semconv.DBName(evt.DatabaseName), - semconv.NetPeerName(hostname), - semconv.NetPeerPort(port), - semconv.NetTransportTCP, + semconv.NetPeerName(hostname), //nolint:staticcheck + semconv.NetPeerPort(port), //nolint:staticcheck + semconv.NetTransportTCP, //nolint:staticcheck } if !m.cfg.CommandAttributeDisabled { attrs = append(attrs, semconv.DBStatement(sanitizeCommand(evt.Command)))