mirror of
https://github.com/prometheus/node_exporter
synced 2025-01-10 07:29:34 +00:00
Move regexp to global in meminfo_linux.go
Compile regexp outside of parsing function in meminfo_linux.go Signed-off-by: Shapor Naghibzadeh <shapor@google.com>
This commit is contained in:
parent
091bed01b0
commit
a1a3633d89
@ -25,6 +25,10 @@ import (
|
||||
"strings"
|
||||
)
|
||||
|
||||
var (
|
||||
reParens = regexp.MustCompile(`\((.*)\)`)
|
||||
)
|
||||
|
||||
func (c *meminfoCollector) getMemInfo() (map[string]float64, error) {
|
||||
file, err := os.Open(procFilePath("meminfo"))
|
||||
if err != nil {
|
||||
@ -39,7 +43,6 @@ func parseMemInfo(r io.Reader) (map[string]float64, error) {
|
||||
var (
|
||||
memInfo = map[string]float64{}
|
||||
scanner = bufio.NewScanner(r)
|
||||
re = regexp.MustCompile(`\((.*)\)`)
|
||||
)
|
||||
|
||||
for scanner.Scan() {
|
||||
@ -55,7 +58,7 @@ func parseMemInfo(r io.Reader) (map[string]float64, error) {
|
||||
}
|
||||
key := parts[0][:len(parts[0])-1] // remove trailing : from key
|
||||
// Active(anon) -> Active_anon
|
||||
key = re.ReplaceAllString(key, "_${1}")
|
||||
key = reParens.ReplaceAllString(key, "_${1}")
|
||||
switch len(parts) {
|
||||
case 2: // no unit
|
||||
case 3: // has unit, we presume kB
|
||||
|
Loading…
Reference in New Issue
Block a user