Skip to content

Commit 936666d

Browse files
authored
Merge branch 'main' into sdklogtest-modu,e
2 parents c7bb890 + 8dc08e2 commit 936666d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
2121
- ⚠️ Update `github.com/prometheus/client_golang` to `v1.21.1`, which changes the `NameValidationScheme` to `UTF8Validation`.
2222
This allows metrics names to keep original delimiters (e.g. `.`), rather than replacing with underscores.
2323
This can be reverted by setting `github.com/prometheus/common/model.NameValidationScheme` to `LegacyValidation` in `github.com/prometheus/common/model`. (#6433)
24+
- Initialize map with `len(keys)` in `NewAllowKeysFilter` and `NewDenyKeysFilter` to avoid unnecessary allocations in `go.opentelemetry.io/otel/attribute`. (#6455)
2425

2526
### Fixes
2627

attribute/filter.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func NewAllowKeysFilter(keys ...Key) Filter {
1919
return func(kv KeyValue) bool { return false }
2020
}
2121

22-
allowed := make(map[Key]struct{})
22+
allowed := make(map[Key]struct{}, len(keys))
2323
for _, k := range keys {
2424
allowed[k] = struct{}{}
2525
}
@@ -38,7 +38,7 @@ func NewDenyKeysFilter(keys ...Key) Filter {
3838
return func(kv KeyValue) bool { return true }
3939
}
4040

41-
forbid := make(map[Key]struct{})
41+
forbid := make(map[Key]struct{}, len(keys))
4242
for _, k := range keys {
4343
forbid[k] = struct{}{}
4444
}

0 commit comments

Comments
 (0)