add only_metrics. docs: consistency

This commit is contained in:
brinkcoder 2025-03-05 01:12:46 +01:00
parent 04fa267d9d
commit 8de639be08
2 changed files with 47 additions and 16 deletions

View File

@ -12,8 +12,8 @@ import (
"strings" "strings"
"time" "time"
lp "github.com/ClusterCockpit/cc-lib/ccMessage"
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger" cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
lp "github.com/ClusterCockpit/cc-energy-manager/pkg/cc-message"
) )
const MEMSTATFILE = "/proc/meminfo" const MEMSTATFILE = "/proc/meminfo"
@ -21,6 +21,7 @@ const NUMA_MEMSTAT_BASE = "/sys/devices/system/node"
type MemstatCollectorConfig struct { type MemstatCollectorConfig struct {
ExcludeMetrics []string `json:"exclude_metrics"` ExcludeMetrics []string `json:"exclude_metrics"`
OnlyMetrics []string `json:"only_metrics,omitempty"`
NodeStats bool `json:"node_stats,omitempty"` NodeStats bool `json:"node_stats,omitempty"`
NumaStats bool `json:"numa_stats,omitempty"` NumaStats bool `json:"numa_stats,omitempty"`
} }
@ -79,10 +80,30 @@ func getStats(filename string) map[string]MemstatStats {
return stats return stats
} }
func (m *MemstatCollector) shouldOutput(metricName string) bool {
// If OnlyMetrics is set, only output these metrics.
if len(m.config.OnlyMetrics) > 0 {
for _, n := range m.config.OnlyMetrics {
if n == metricName {
return true
}
}
return false
}
// Otherwise, check exclude_metrics.
for _, n := range m.config.ExcludeMetrics {
if n == metricName {
return false
}
}
return true
}
func (m *MemstatCollector) Init(config json.RawMessage) error { func (m *MemstatCollector) Init(config json.RawMessage) error {
var err error var err error
m.name = "MemstatCollector" m.name = "MemstatCollector"
m.parallel = true m.parallel = true
// Standardwerte:
m.config.NodeStats = true m.config.NodeStats = true
m.config.NumaStats = false m.config.NumaStats = false
if len(config) > 0 { if len(config) > 0 {
@ -166,6 +187,9 @@ func (m *MemstatCollector) Read(interval time.Duration, output chan lp.CCMessage
sendStats := func(stats map[string]MemstatStats, tags map[string]string) { sendStats := func(stats map[string]MemstatStats, tags map[string]string) {
for match, name := range m.matches { for match, name := range m.matches {
if !m.shouldOutput(name) {
continue
}
var value float64 = 0 var value float64 = 0
var unit string = "" var unit string = ""
if v, ok := stats[match]; ok { if v, ok := stats[match]; ok {
@ -174,7 +198,6 @@ func (m *MemstatCollector) Read(interval time.Duration, output chan lp.CCMessage
unit = v.unit unit = v.unit
} }
} }
y, err := lp.NewMessage(name, tags, m.meta, map[string]interface{}{"value": value}, time.Now()) y, err := lp.NewMessage(name, tags, m.meta, map[string]interface{}{"value": value}, time.Now())
if err == nil { if err == nil {
if len(unit) > 0 { if len(unit) > 0 {
@ -183,7 +206,7 @@ func (m *MemstatCollector) Read(interval time.Duration, output chan lp.CCMessage
output <- y output <- y
} }
} }
if m.sendMemUsed { if m.sendMemUsed && m.shouldOutput("mem_used") {
memUsed := 0.0 memUsed := 0.0
unit := "" unit := ""
if totalVal, total := stats["MemTotal"]; total { if totalVal, total := stats["MemTotal"]; total {

View File

@ -1,9 +1,14 @@
## `memstat` collector ## `memstat` collector
```json ```json
"memstat": { "memstat": {
"exclude_metrics": [ "exclude_metrics": [
"mem_buffera"
],
"only_metrics": [
"mem_total",
"mem_free",
"mem_cached",
"mem_used" "mem_used"
] ]
} }
@ -11,17 +16,20 @@
The `memstat` collector reads data from `/proc/meminfo` and outputs a handful **node** metrics. If a metric is not required, it can be excluded from forwarding it to the sink. The `memstat` collector reads data from `/proc/meminfo` and outputs a handful **node** metrics. If a metric is not required, it can be excluded from forwarding it to the sink.
Both filtering mechanisms are supported:
- `exclude_metrics`: Excludes the specified metrics.
- `only_metrics`: If provided, only the listed metrics are collected. This takes precedence over `exclude_metrics`.
Metrics: Metrics:
* `mem_total` - `mem_total`
* `mem_sreclaimable` - `mem_sreclaimable`
* `mem_slab` - `mem_slab`
* `mem_free` - `mem_free`
* `mem_buffers` - `mem_buffers`
* `mem_cached` - `mem_cached`
* `mem_available` - `mem_available`
* `mem_shared` - `mem_shared`
* `swap_total` - `swap_total`
* `swap_free` - `swap_free`
* `mem_used` = `mem_total` - (`mem_free` + `mem_buffers` + `mem_cached`) - `mem_used` = `mem_total` - (`mem_free` + `mem_buffers` + `mem_cached`)