mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-04-26 06:01:42 +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>
129 lines
2.7 KiB
Go
129 lines
2.7 KiB
Go
package collectors
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"log"
|
|
"os"
|
|
"os/exec"
|
|
"strings"
|
|
"time"
|
|
|
|
lp "github.com/ClusterCockpit/cc-lib/ccMessage"
|
|
influx "github.com/influxdata/line-protocol"
|
|
)
|
|
|
|
const CUSTOMCMDPATH = `/home/unrz139/Work/cc-metric-collector/collectors/custom`
|
|
|
|
type CustomCmdCollectorConfig struct {
|
|
Commands []string `json:"commands"`
|
|
Files []string `json:"files"`
|
|
ExcludeMetrics []string `json:"exclude_metrics"`
|
|
}
|
|
|
|
type CustomCmdCollector struct {
|
|
metricCollector
|
|
handler *influx.MetricHandler
|
|
parser *influx.Parser
|
|
config CustomCmdCollectorConfig
|
|
commands []string
|
|
files []string
|
|
}
|
|
|
|
func (m *CustomCmdCollector) Init(config json.RawMessage) error {
|
|
var err error
|
|
m.name = "CustomCmdCollector"
|
|
m.parallel = true
|
|
m.meta = map[string]string{"source": m.name, "group": "Custom"}
|
|
if len(config) > 0 {
|
|
err = json.Unmarshal(config, &m.config)
|
|
if err != nil {
|
|
log.Print(err.Error())
|
|
return err
|
|
}
|
|
}
|
|
m.setup()
|
|
for _, c := range m.config.Commands {
|
|
cmdfields := strings.Fields(c)
|
|
command := exec.Command(cmdfields[0], strings.Join(cmdfields[1:], " "))
|
|
command.Wait()
|
|
_, err = command.Output()
|
|
if err == nil {
|
|
m.commands = append(m.commands, c)
|
|
}
|
|
}
|
|
for _, f := range m.config.Files {
|
|
_, err = os.ReadFile(f)
|
|
if err == nil {
|
|
m.files = append(m.files, f)
|
|
} else {
|
|
log.Print(err.Error())
|
|
continue
|
|
}
|
|
}
|
|
if len(m.files) == 0 && len(m.commands) == 0 {
|
|
return errors.New("no metrics to collect")
|
|
}
|
|
m.handler = influx.NewMetricHandler()
|
|
m.parser = influx.NewParser(m.handler)
|
|
m.parser.SetTimeFunc(DefaultTime)
|
|
m.init = true
|
|
return nil
|
|
}
|
|
|
|
var DefaultTime = func() time.Time {
|
|
return time.Unix(42, 0)
|
|
}
|
|
|
|
func (m *CustomCmdCollector) Read(interval time.Duration, output chan lp.CCMessage) {
|
|
if !m.init {
|
|
return
|
|
}
|
|
for _, cmd := range m.commands {
|
|
cmdfields := strings.Fields(cmd)
|
|
command := exec.Command(cmdfields[0], strings.Join(cmdfields[1:], " "))
|
|
command.Wait()
|
|
stdout, err := command.Output()
|
|
if err != nil {
|
|
log.Print(err)
|
|
continue
|
|
}
|
|
cmdmetrics, err := m.parser.Parse(stdout)
|
|
if err != nil {
|
|
log.Print(err)
|
|
continue
|
|
}
|
|
for _, c := range cmdmetrics {
|
|
_, skip := stringArrayContains(m.config.ExcludeMetrics, c.Name())
|
|
if skip {
|
|
continue
|
|
}
|
|
|
|
output <- lp.FromInfluxMetric(c)
|
|
}
|
|
}
|
|
for _, file := range m.files {
|
|
buffer, err := os.ReadFile(file)
|
|
if err != nil {
|
|
log.Print(err)
|
|
return
|
|
}
|
|
fmetrics, err := m.parser.Parse(buffer)
|
|
if err != nil {
|
|
log.Print(err)
|
|
continue
|
|
}
|
|
for _, f := range fmetrics {
|
|
_, skip := stringArrayContains(m.config.ExcludeMetrics, f.Name())
|
|
if skip {
|
|
continue
|
|
}
|
|
output <- lp.FromInfluxMetric(f)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (m *CustomCmdCollector) Close() {
|
|
m.init = false
|
|
}
|