mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-12 06:17:27 -08:00
Avoid reallocating map in MatchLabels (#10715)
We know the max size of our map so we can create it with that information and avoid extra allocations Signed-off-by: Łukasz Mierzwa <l.mierzwa@gmail.com>
This commit is contained in:
parent
4ece54852c
commit
89de30a0b7
|
@ -119,7 +119,7 @@ func (ls *Labels) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
||||||
func (ls Labels) MatchLabels(on bool, names ...string) Labels {
|
func (ls Labels) MatchLabels(on bool, names ...string) Labels {
|
||||||
matchedLabels := Labels{}
|
matchedLabels := Labels{}
|
||||||
|
|
||||||
nameSet := map[string]struct{}{}
|
nameSet := make(map[string]struct{}, len(names))
|
||||||
for _, n := range names {
|
for _, n := range names {
|
||||||
nameSet[n] = struct{}{}
|
nameSet[n] = struct{}{}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue