mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-04-19 03:05:55 +02:00
* Remove go-toolkit as build requirement for RPM builds if run in CI * Remove condition around BuildRequires and use go-toolkit for RPM builds * use go-toolkit for RPM builds * Install go-toolkit to fulfill build requirements for RPM * Add golang-race for UBI9 and Alma9 * Fix wrongly named packages * Fix wrongly named packages * Fix Release part * Fix Release part * Fix documentation of RAPL collector * Mark all JSON config fields of message processor as omitempty * Generate HUGO inputs out of Markdown files * Check creation of CCMessage in NATS receiver * Use CCMessage FromBytes instead of Influx's decoder * Rename 'process_message' to 'process_messages' in metricRouter config This makes the behavior more consistent with the other modules, which have their MessageProcessor named 'process_messages'. This most likely was just a typo. * Add optional interface alias in netstat (#130) * Check creation of CCMessage in NATS receiver * add optional interface aliases for netstatMetric * small fix --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Fix excluded metrics for diskstat and add exclude_mounts (#131) * Check creation of CCMessage in NATS receiver * fix excluded metrics and add optional mountpoint exclude --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Add derived values for nfsiostat (#132) * Check creation of CCMessage in NATS receiver * add derived_values for nfsiostatMetric --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Add exclude_devices to iostat (#133) * Check creation of CCMessage in NATS receiver * add exclude_device for iostatMetric * add md file --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Add derived_values for numastats (#134) * Check creation of CCMessage in NATS receiver * add derived_values for numastats * change to ccMessage * remove vim command artefact --------- Co-authored-by: Thomas Roehl <thomas.roehl@fau.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de> Co-authored-by: Thomas Gruber <Thomas.Roehl@googlemail.com> * Fix artifacts of not done cc-lib switch * Fix artifacts in netstat collector of not done cc-lib switch * Change to cc-lib (#135) * Change to ccMessage from cc-lib * Remove local development path * Use receiver, sinks, ccLogger and ccConfig from cc-lib * Fix ccLogger import path * Update CI * Delete mountpoint when it vanishes, not just its data (#137) --------- Co-authored-by: Michael Panzlaff <michael.panzlaff@fau.de> Co-authored-by: brinkcoder <Robert.Externbrink@ruhr-uni-bochum.de> Co-authored-by: exterr2f <Robert.Externbrink@rub.de>
237 lines
5.6 KiB
Go
237 lines
5.6 KiB
Go
package collectors
|
|
|
|
import (
|
|
"bufio"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
cclog "github.com/ClusterCockpit/cc-lib/ccLogger"
|
|
lp "github.com/ClusterCockpit/cc-lib/ccMessage"
|
|
)
|
|
|
|
const MEMSTATFILE = "/proc/meminfo"
|
|
const NUMA_MEMSTAT_BASE = "/sys/devices/system/node"
|
|
|
|
type MemstatCollectorConfig struct {
|
|
ExcludeMetrics []string `json:"exclude_metrics"`
|
|
NodeStats bool `json:"node_stats,omitempty"`
|
|
NumaStats bool `json:"numa_stats,omitempty"`
|
|
}
|
|
|
|
type MemstatCollectorNode struct {
|
|
file string
|
|
tags map[string]string
|
|
}
|
|
|
|
type MemstatCollector struct {
|
|
metricCollector
|
|
stats map[string]int64
|
|
tags map[string]string
|
|
matches map[string]string
|
|
config MemstatCollectorConfig
|
|
nodefiles map[int]MemstatCollectorNode
|
|
sendMemUsed bool
|
|
}
|
|
|
|
type MemstatStats struct {
|
|
value float64
|
|
unit string
|
|
}
|
|
|
|
func getStats(filename string) map[string]MemstatStats {
|
|
stats := make(map[string]MemstatStats)
|
|
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], ":")] = MemstatStats{
|
|
value: v,
|
|
unit: linefields[2],
|
|
}
|
|
}
|
|
} else if len(linefields) == 5 {
|
|
v, err := strconv.ParseFloat(linefields[3], 64)
|
|
if err == nil {
|
|
cclog.ComponentDebug("getStats", strings.Trim(linefields[2], ":"), v, linefields[4])
|
|
stats[strings.Trim(linefields[2], ":")] = MemstatStats{
|
|
value: v,
|
|
unit: linefields[4],
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return stats
|
|
}
|
|
|
|
func (m *MemstatCollector) Init(config json.RawMessage) error {
|
|
var err error
|
|
m.name = "MemstatCollector"
|
|
m.parallel = true
|
|
m.config.NodeStats = true
|
|
m.config.NumaStats = false
|
|
if len(config) > 0 {
|
|
err = json.Unmarshal(config, &m.config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
m.meta = map[string]string{"source": m.name, "group": "Memory"}
|
|
m.stats = make(map[string]int64)
|
|
m.matches = make(map[string]string)
|
|
m.tags = map[string]string{"type": "node"}
|
|
matches := map[string]string{
|
|
"MemTotal": "mem_total",
|
|
"SwapTotal": "swap_total",
|
|
"SReclaimable": "mem_sreclaimable",
|
|
"Slab": "mem_slab",
|
|
"MemFree": "mem_free",
|
|
"Buffers": "mem_buffers",
|
|
"Cached": "mem_cached",
|
|
"MemAvailable": "mem_available",
|
|
"SwapFree": "swap_free",
|
|
"MemShared": "mem_shared",
|
|
}
|
|
for k, v := range matches {
|
|
_, skip := stringArrayContains(m.config.ExcludeMetrics, k)
|
|
if !skip {
|
|
m.matches[k] = v
|
|
}
|
|
}
|
|
m.sendMemUsed = false
|
|
if _, skip := stringArrayContains(m.config.ExcludeMetrics, "mem_used"); !skip {
|
|
m.sendMemUsed = true
|
|
}
|
|
if len(m.matches) == 0 {
|
|
return errors.New("no metrics to collect")
|
|
}
|
|
m.setup()
|
|
|
|
if m.config.NodeStats {
|
|
if stats := getStats(MEMSTATFILE); len(stats) == 0 {
|
|
return fmt.Errorf("cannot read data from file %s", MEMSTATFILE)
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
m.init = true
|
|
return err
|
|
}
|
|
|
|
func (m *MemstatCollector) Read(interval time.Duration, output chan lp.CCMessage) {
|
|
if !m.init {
|
|
return
|
|
}
|
|
|
|
sendStats := func(stats map[string]MemstatStats, tags map[string]string) {
|
|
for match, name := range m.matches {
|
|
var value float64 = 0
|
|
var unit string = ""
|
|
if v, ok := stats[match]; ok {
|
|
value = v.value
|
|
if len(v.unit) > 0 {
|
|
unit = v.unit
|
|
}
|
|
}
|
|
|
|
y, err := lp.NewMessage(name, tags, m.meta, map[string]interface{}{"value": value}, time.Now())
|
|
if err == nil {
|
|
if len(unit) > 0 {
|
|
y.AddMeta("unit", unit)
|
|
}
|
|
output <- y
|
|
}
|
|
}
|
|
if m.sendMemUsed {
|
|
memUsed := 0.0
|
|
unit := ""
|
|
if totalVal, total := stats["MemTotal"]; total {
|
|
if freeVal, free := stats["MemFree"]; free {
|
|
memUsed = totalVal.value - freeVal.value
|
|
if len(totalVal.unit) > 0 {
|
|
unit = totalVal.unit
|
|
} else if len(freeVal.unit) > 0 {
|
|
unit = freeVal.unit
|
|
}
|
|
if bufVal, buffers := stats["Buffers"]; buffers {
|
|
memUsed -= bufVal.value
|
|
if len(bufVal.unit) > 0 && len(unit) == 0 {
|
|
unit = bufVal.unit
|
|
}
|
|
if cacheVal, cached := stats["Cached"]; cached {
|
|
memUsed -= cacheVal.value
|
|
if len(cacheVal.unit) > 0 && len(unit) == 0 {
|
|
unit = cacheVal.unit
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
y, err := lp.NewMessage("mem_used", tags, m.meta, map[string]interface{}{"value": memUsed}, time.Now())
|
|
if err == nil {
|
|
if len(unit) > 0 {
|
|
y.AddMeta("unit", unit)
|
|
}
|
|
output <- y
|
|
}
|
|
}
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (m *MemstatCollector) Close() {
|
|
m.init = false
|
|
}
|