Skip to content

Commit

Permalink
change the scope name for the prometheus bridge to match the package (#…
Browse files Browse the repository at this point in the history
…5396)

Co-authored-by: Robert Pająk <pellared@hotmail.com>
  • Loading branch information
dashpole and pellared committed Apr 16, 2024
1 parent e90376c commit 0ebeecf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion bridges/prometheus/producer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down

0 comments on commit 0ebeecf

Please sign in to comment.