mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/bytesutil: move InternString() from lib/promscrape/discoverytutils to lib/bytesutil
lib/bytesutil is more appropriate place for InternString() function
This commit is contained in:
parent
f61b8cec69
commit
593da3603e
4 changed files with 5 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
package discoveryutils
|
||||
package bytesutil
|
||||
|
||||
import (
|
||||
"sync"
|
|
@ -1,4 +1,4 @@
|
|||
package discoveryutils
|
||||
package bytesutil
|
||||
|
||||
import (
|
||||
"fmt"
|
|
@ -1,4 +1,4 @@
|
|||
package discoveryutils
|
||||
package bytesutil
|
||||
|
||||
import (
|
||||
"fmt"
|
|
@ -34,7 +34,6 @@ import (
|
|||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promscrape/discovery/kubernetes"
|
||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promscrape/discovery/openstack"
|
||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promscrape/discovery/yandexcloud"
|
||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promscrape/discoveryutils"
|
||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promutils"
|
||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/proxy"
|
||||
"github.com/VictoriaMetrics/metrics"
|
||||
|
@ -1330,8 +1329,8 @@ func (swc *scrapeWorkConfig) getScrapeWork(target string, extraLabels, metaLabel
|
|||
func internLabelStrings(labels []prompbmarshal.Label) {
|
||||
for i := range labels {
|
||||
label := &labels[i]
|
||||
label.Name = discoveryutils.InternString(label.Name)
|
||||
label.Value = discoveryutils.InternString(label.Value)
|
||||
label.Name = bytesutil.InternString(label.Name)
|
||||
label.Value = bytesutil.InternString(label.Value)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue