2021-03-25 14:47:35 +01:00
|
|
|
package collectors
|
|
|
|
|
|
|
|
import (
|
2022-02-24 18:27:05 +01:00
|
|
|
"bufio"
|
2021-11-25 15:11:39 +01:00
|
|
|
"encoding/json"
|
2021-03-25 14:47:35 +01:00
|
|
|
"errors"
|
2021-10-04 15:23:43 +02:00
|
|
|
"fmt"
|
2022-02-24 18:27:05 +01:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
2021-03-25 14:47:35 +01:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
2022-01-26 15:54:49 +01:00
|
|
|
|
2022-02-24 18:27:05 +01:00
|
|
|
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
2022-01-25 15:37:43 +01:00
|
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
2021-03-25 14:47:35 +01:00
|
|
|
)
|
|
|
|
|
2022-02-24 18:27:05 +01:00
|
|
|
const MEMSTATFILE = "/proc/meminfo"
|
|
|
|
const NUMA_MEMSTAT_BASE = "/sys/devices/system/node"
|
2021-03-25 14:47:35 +01:00
|
|
|
|
2021-11-25 14:04:03 +01:00
|
|
|
type MemstatCollectorConfig struct {
|
2021-11-25 15:11:39 +01:00
|
|
|
ExcludeMetrics []string `json:"exclude_metrics"`
|
2022-02-24 18:27:05 +01:00
|
|
|
NodeStats bool `json:"node_stats,omitempty"`
|
|
|
|
NumaStats bool `json:"numa_stats,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type MemstatCollectorNode struct {
|
|
|
|
file string
|
|
|
|
tags map[string]string
|
2021-11-25 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
2021-03-25 14:47:35 +01:00
|
|
|
type MemstatCollector struct {
|
2022-01-25 15:37:43 +01:00
|
|
|
metricCollector
|
2022-03-09 11:05:26 +01:00
|
|
|
stats map[string]int64
|
|
|
|
tags map[string]string
|
|
|
|
matches map[string]string
|
|
|
|
config MemstatCollectorConfig
|
|
|
|
nodefiles map[int]MemstatCollectorNode
|
|
|
|
sendMemUsed bool
|
2022-02-24 18:27:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func getStats(filename string) map[string]float64 {
|
|
|
|
stats := make(map[string]float64)
|
|
|
|
file, err := os.Open(filename)
|
|
|
|
if err != nil {
|
|
|
|
cclog.Error(err.Error())
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
scanner := bufio.NewScanner(file)
|
|
|
|
for scanner.Scan() {
|
|
|
|
line := scanner.Text()
|
|
|
|
linefields := strings.Fields(line)
|
|
|
|
if len(linefields) == 3 {
|
|
|
|
v, err := strconv.ParseFloat(linefields[1], 64)
|
|
|
|
if err == nil {
|
|
|
|
stats[strings.Trim(linefields[0], ":")] = v
|
|
|
|
}
|
|
|
|
} else if len(linefields) == 5 {
|
|
|
|
v, err := strconv.ParseFloat(linefields[3], 64)
|
|
|
|
if err == nil {
|
|
|
|
stats[strings.Trim(linefields[0], ":")] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return stats
|
2021-03-25 14:47:35 +01:00
|
|
|
}
|
|
|
|
|
2022-01-25 15:37:43 +01:00
|
|
|
func (m *MemstatCollector) Init(config json.RawMessage) error {
|
2021-11-25 15:11:39 +01:00
|
|
|
var err error
|
2021-03-25 17:47:08 +01:00
|
|
|
m.name = "MemstatCollector"
|
2022-02-24 18:27:05 +01:00
|
|
|
m.config.NodeStats = true
|
|
|
|
m.config.NumaStats = false
|
2021-11-25 14:04:03 +01:00
|
|
|
if len(config) > 0 {
|
2021-11-25 15:11:39 +01:00
|
|
|
err = json.Unmarshal(config, &m.config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-25 14:04:03 +01:00
|
|
|
}
|
2022-03-09 11:05:26 +01:00
|
|
|
m.meta = map[string]string{"source": m.name, "group": "Memory", "unit": "GByte"}
|
2021-10-04 15:23:43 +02:00
|
|
|
m.stats = make(map[string]int64)
|
2021-11-25 14:04:03 +01:00
|
|
|
m.matches = make(map[string]string)
|
2021-10-04 15:23:43 +02:00
|
|
|
m.tags = map[string]string{"type": "node"}
|
2022-02-24 18:27:05 +01:00
|
|
|
matches := map[string]string{
|
|
|
|
"MemTotal": "mem_total",
|
2021-10-04 15:23:43 +02:00
|
|
|
"SwapTotal": "swap_total",
|
|
|
|
"SReclaimable": "mem_sreclaimable",
|
|
|
|
"Slab": "mem_slab",
|
|
|
|
"MemFree": "mem_free",
|
|
|
|
"Buffers": "mem_buffers",
|
|
|
|
"Cached": "mem_cached",
|
|
|
|
"MemAvailable": "mem_available",
|
2022-02-24 18:27:05 +01:00
|
|
|
"SwapFree": "swap_free",
|
|
|
|
"MemShared": "mem_shared",
|
|
|
|
}
|
2021-11-25 14:04:03 +01:00
|
|
|
for k, v := range matches {
|
2021-11-25 15:11:39 +01:00
|
|
|
_, skip := stringArrayContains(m.config.ExcludeMetrics, k)
|
|
|
|
if !skip {
|
|
|
|
m.matches[k] = v
|
|
|
|
}
|
2021-11-25 14:04:03 +01:00
|
|
|
}
|
2022-03-09 11:05:26 +01:00
|
|
|
m.sendMemUsed = false
|
|
|
|
if _, skip := stringArrayContains(m.config.ExcludeMetrics, "mem_used"); !skip {
|
|
|
|
m.sendMemUsed = true
|
|
|
|
}
|
2021-11-25 14:04:03 +01:00
|
|
|
if len(m.matches) == 0 {
|
2022-02-24 18:27:05 +01:00
|
|
|
return errors.New("no metrics to collect")
|
2021-11-25 14:04:03 +01:00
|
|
|
}
|
2021-03-25 14:47:35 +01:00
|
|
|
m.setup()
|
|
|
|
|
2022-02-24 18:27:05 +01:00
|
|
|
if m.config.NodeStats {
|
|
|
|
if stats := getStats(MEMSTATFILE); len(stats) == 0 {
|
|
|
|
return fmt.Errorf("cannot read data from file %s", MEMSTATFILE)
|
|
|
|
}
|
2021-03-25 14:47:35 +01:00
|
|
|
}
|
|
|
|
|
2022-02-24 18:27:05 +01:00
|
|
|
if m.config.NumaStats {
|
|
|
|
globPattern := filepath.Join(NUMA_MEMSTAT_BASE, "node[0-9]*", "meminfo")
|
|
|
|
regex := regexp.MustCompile(filepath.Join(NUMA_MEMSTAT_BASE, "node(\\d+)", "meminfo"))
|
|
|
|
files, err := filepath.Glob(globPattern)
|
|
|
|
if err == nil {
|
|
|
|
m.nodefiles = make(map[int]MemstatCollectorNode)
|
|
|
|
for _, f := range files {
|
|
|
|
if stats := getStats(f); len(stats) == 0 {
|
|
|
|
return fmt.Errorf("cannot read data from file %s", f)
|
|
|
|
}
|
|
|
|
rematch := regex.FindStringSubmatch(f)
|
|
|
|
if len(rematch) == 2 {
|
|
|
|
id, err := strconv.Atoi(rematch[1])
|
|
|
|
if err == nil {
|
|
|
|
f := MemstatCollectorNode{
|
|
|
|
file: f,
|
|
|
|
tags: map[string]string{
|
|
|
|
"type": "memoryDomain",
|
|
|
|
"type-id": fmt.Sprintf("%d", id),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
m.nodefiles[id] = f
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-25 14:47:35 +01:00
|
|
|
}
|
|
|
|
}
|
2022-02-24 18:27:05 +01:00
|
|
|
m.init = true
|
|
|
|
return err
|
|
|
|
}
|
2021-03-25 14:47:35 +01:00
|
|
|
|
2022-02-24 18:27:05 +01:00
|
|
|
func (m *MemstatCollector) Read(interval time.Duration, output chan lp.CCMetric) {
|
|
|
|
if !m.init {
|
2021-03-25 14:47:35 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:27:05 +01:00
|
|
|
sendStats := func(stats map[string]float64, tags map[string]string) {
|
|
|
|
for match, name := range m.matches {
|
|
|
|
var value float64 = 0
|
|
|
|
if v, ok := stats[match]; ok {
|
|
|
|
value = v
|
|
|
|
}
|
2022-03-09 11:05:26 +01:00
|
|
|
y, err := lp.New(name, tags, m.meta, map[string]interface{}{"value": value * 1e-6}, time.Now())
|
2022-02-24 18:27:05 +01:00
|
|
|
if err == nil {
|
|
|
|
output <- y
|
|
|
|
}
|
2021-10-04 15:23:43 +02:00
|
|
|
}
|
2022-03-09 11:05:26 +01:00
|
|
|
if m.sendMemUsed {
|
|
|
|
memUsed := 0.0
|
|
|
|
if totalVal, total := stats["MemTotal"]; total {
|
|
|
|
if freeVal, free := stats["MemFree"]; free {
|
|
|
|
if bufVal, buffers := stats["Buffers"]; buffers {
|
|
|
|
if cacheVal, cached := stats["Cached"]; cached {
|
|
|
|
memUsed = totalVal - (freeVal + bufVal + cacheVal)
|
2022-02-24 18:27:05 +01:00
|
|
|
}
|
|
|
|
}
|
2021-10-04 15:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
2022-03-09 11:05:26 +01:00
|
|
|
y, err := lp.New("mem_used", tags, m.meta, map[string]interface{}{"value": memUsed * 1e-6}, time.Now())
|
|
|
|
if err == nil {
|
|
|
|
output <- y
|
|
|
|
}
|
2021-10-04 15:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
2022-02-24 18:27:05 +01:00
|
|
|
|
|
|
|
if m.config.NodeStats {
|
|
|
|
nodestats := getStats(MEMSTATFILE)
|
|
|
|
sendStats(nodestats, m.tags)
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.config.NumaStats {
|
|
|
|
for _, nodeConf := range m.nodefiles {
|
|
|
|
stats := getStats(nodeConf.file)
|
|
|
|
sendStats(stats, nodeConf.tags)
|
2021-10-04 15:23:43 +02:00
|
|
|
}
|
2021-05-12 18:09:15 +02:00
|
|
|
}
|
2021-03-25 14:47:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MemstatCollector) Close() {
|
2021-10-04 15:47:03 +02:00
|
|
|
m.init = false
|
2021-03-25 14:47:35 +01:00
|
|
|
}
|