diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ef0d841922..e15cbf3c8c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Add the new `go.opentelemetry.io/contrib/instrgen` package to provide auto-generated source code instrumentation. (#3068, #3108) - `NewSDK` in `go.opentelemetry.io/contrib/config` now returns a configured SDK with a valid `MeterProvider`. (#4804) +### Changed + +- Change the scope name for the prometheus bridge to `go.opentelemetry.io/contrib/bridges/prometheus` to match the package. (#5396) + ### Fixed - Fix bug where an empty exemplar was added to counters in `go.opentelemetry.io/contrib/bridges/prometheus`. (#5395) diff --git a/bridges/prometheus/producer.go b/bridges/prometheus/producer.go index 24109394b8b..5626bdc5545 100644 --- a/bridges/prometheus/producer.go +++ b/bridges/prometheus/producer.go @@ -22,7 +22,7 @@ import ( ) const ( - scopeName = "go.opentelemetry.io/otel/bridge/prometheus" + scopeName = "go.opentelemetry.io/contrib/bridges/prometheus" traceIDLabel = "trace_id" spanIDLabel = "span_id" )