2021-03-25 14:47:35 +01:00
|
|
|
package collectors
|
|
|
|
|
|
|
|
import (
|
2022-02-18 02:25:23 +01:00
|
|
|
"bufio"
|
2021-11-25 15:11:39 +01:00
|
|
|
"encoding/json"
|
2022-02-18 02:25:23 +01:00
|
|
|
"errors"
|
|
|
|
"os"
|
2021-03-25 14:47:35 +01:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
2022-02-04 12:39:59 +01:00
|
|
|
|
2022-10-10 11:53:11 +02:00
|
|
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
2025-02-19 11:32:15 +01:00
|
|
|
lp "github.com/ClusterCockpit/cc-lib/ccMessage"
|
2021-03-25 14:47:35 +01:00
|
|
|
)
|
|
|
|
|
2022-03-11 13:48:18 +01:00
|
|
|
const NETSTATFILE = "/proc/net/dev"
|
2021-03-25 14:47:35 +01:00
|
|
|
|
2021-11-25 14:04:03 +01:00
|
|
|
type NetstatCollectorConfig struct {
|
2025-02-19 11:32:15 +01:00
|
|
|
IncludeDevices []string `json:"include_devices"`
|
|
|
|
SendAbsoluteValues bool `json:"send_abs_values"`
|
|
|
|
SendDerivedValues bool `json:"send_derived_values"`
|
|
|
|
InterfaceAliases map[string][]string `json:"interface_aliases,omitempty"`
|
2022-02-18 02:25:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type NetstatCollectorMetric struct {
|
2022-03-11 14:47:18 +01:00
|
|
|
name string
|
|
|
|
index int
|
|
|
|
tags map[string]string
|
|
|
|
meta map[string]string
|
|
|
|
meta_rates map[string]string
|
|
|
|
lastValue int64
|
2021-11-25 14:04:03 +01:00
|
|
|
}
|
|
|
|
|
2021-03-25 14:47:35 +01:00
|
|
|
type NetstatCollector struct {
|
2022-01-25 15:37:43 +01:00
|
|
|
metricCollector
|
2025-02-19 11:32:15 +01:00
|
|
|
config NetstatCollectorConfig
|
|
|
|
aliasToCanonical map[string]string
|
|
|
|
matches map[string][]NetstatCollectorMetric
|
|
|
|
lastTimestamp time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NetstatCollector) buildAliasMapping() {
|
|
|
|
m.aliasToCanonical = make(map[string]string)
|
|
|
|
for canon, aliases := range m.config.InterfaceAliases {
|
|
|
|
for _, alias := range aliases {
|
|
|
|
m.aliasToCanonical[alias] = canon
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getCanonicalName(raw string, aliasToCanonical map[string]string) string {
|
|
|
|
if canon, ok := aliasToCanonical[raw]; ok {
|
|
|
|
return canon
|
|
|
|
}
|
|
|
|
return raw
|
2021-03-25 14:47:35 +01:00
|
|
|
}
|
|
|
|
|
2022-01-25 15:37:43 +01:00
|
|
|
func (m *NetstatCollector) Init(config json.RawMessage) error {
|
2021-03-25 17:47:08 +01:00
|
|
|
m.name = "NetstatCollector"
|
2022-05-13 14:10:39 +02:00
|
|
|
m.parallel = true
|
2021-03-25 14:47:35 +01:00
|
|
|
m.setup()
|
2022-02-18 02:25:23 +01:00
|
|
|
m.lastTimestamp = time.Now()
|
2022-03-11 13:48:18 +01:00
|
|
|
|
|
|
|
const (
|
2022-03-11 14:09:22 +01:00
|
|
|
fieldInterface = iota
|
|
|
|
fieldReceiveBytes
|
|
|
|
fieldReceivePackets
|
|
|
|
fieldReceiveErrs
|
|
|
|
fieldReceiveDrop
|
|
|
|
fieldReceiveFifo
|
|
|
|
fieldReceiveFrame
|
|
|
|
fieldReceiveCompressed
|
|
|
|
fieldReceiveMulticast
|
|
|
|
fieldTransmitBytes
|
|
|
|
fieldTransmitPackets
|
|
|
|
fieldTransmitErrs
|
|
|
|
fieldTransmitDrop
|
|
|
|
fieldTransmitFifo
|
|
|
|
fieldTransmitColls
|
|
|
|
fieldTransmitCarrier
|
|
|
|
fieldTransmitCompressed
|
2022-03-11 13:48:18 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
m.matches = make(map[string][]NetstatCollectorMetric)
|
|
|
|
|
|
|
|
// Set default configuration,
|
|
|
|
m.config.SendAbsoluteValues = true
|
|
|
|
m.config.SendDerivedValues = false
|
|
|
|
// Read configuration file, allow overwriting default config
|
2021-11-26 18:19:45 +01:00
|
|
|
if len(config) > 0 {
|
2021-11-29 15:32:58 +01:00
|
|
|
err := json.Unmarshal(config, &m.config)
|
|
|
|
if err != nil {
|
2022-02-18 02:25:23 +01:00
|
|
|
cclog.ComponentError(m.name, "Error reading config:", err.Error())
|
2021-11-29 15:32:58 +01:00
|
|
|
return err
|
|
|
|
}
|
2021-11-25 14:04:03 +01:00
|
|
|
}
|
2022-03-11 13:48:18 +01:00
|
|
|
|
2025-02-19 11:32:15 +01:00
|
|
|
m.buildAliasMapping()
|
|
|
|
|
2022-03-11 13:48:18 +01:00
|
|
|
// Check access to net statistic file
|
|
|
|
file, err := os.Open(NETSTATFILE)
|
2022-02-18 02:25:23 +01:00
|
|
|
if err != nil {
|
|
|
|
cclog.ComponentError(m.name, err.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
scanner := bufio.NewScanner(file)
|
|
|
|
for scanner.Scan() {
|
|
|
|
l := scanner.Text()
|
2022-03-11 13:48:18 +01:00
|
|
|
|
|
|
|
// Skip lines with no net device entry
|
2022-02-18 02:25:23 +01:00
|
|
|
if !strings.Contains(l, ":") {
|
|
|
|
continue
|
|
|
|
}
|
2022-03-11 13:48:18 +01:00
|
|
|
|
|
|
|
// Split line into fields
|
2022-02-18 02:25:23 +01:00
|
|
|
f := strings.Fields(l)
|
2022-03-11 13:48:18 +01:00
|
|
|
|
2025-02-19 11:32:15 +01:00
|
|
|
// Get raw and canonical names
|
|
|
|
raw := strings.Trim(f[0], ": ")
|
|
|
|
canonical := getCanonicalName(raw, m.aliasToCanonical)
|
2022-03-11 13:48:18 +01:00
|
|
|
|
|
|
|
// Check if device is a included device
|
2025-02-19 11:32:15 +01:00
|
|
|
if _, ok := stringArrayContains(m.config.IncludeDevices, canonical); ok {
|
|
|
|
// Tag will contain original device name (raw).
|
|
|
|
tags := map[string]string{"stype": "network", "stype-id": raw, "type": "node"}
|
2022-03-11 14:47:18 +01:00
|
|
|
meta_unit_byte := map[string]string{"source": m.name, "group": "Network", "unit": "bytes"}
|
|
|
|
meta_unit_byte_per_sec := map[string]string{"source": m.name, "group": "Network", "unit": "bytes/sec"}
|
|
|
|
meta_unit_pkts := map[string]string{"source": m.name, "group": "Network", "unit": "packets"}
|
|
|
|
meta_unit_pkts_per_sec := map[string]string{"source": m.name, "group": "Network", "unit": "packets/sec"}
|
2022-03-11 13:48:18 +01:00
|
|
|
|
2025-02-19 11:32:15 +01:00
|
|
|
m.matches[canonical] = []NetstatCollectorMetric{
|
2022-03-11 13:48:18 +01:00
|
|
|
{
|
2022-03-11 14:47:18 +01:00
|
|
|
name: "net_bytes_in",
|
|
|
|
index: fieldReceiveBytes,
|
|
|
|
lastValue: -1,
|
|
|
|
tags: tags,
|
|
|
|
meta: meta_unit_byte,
|
|
|
|
meta_rates: meta_unit_byte_per_sec,
|
2022-03-11 13:48:18 +01:00
|
|
|
},
|
|
|
|
{
|
2022-03-11 14:47:18 +01:00
|
|
|
name: "net_pkts_in",
|
|
|
|
index: fieldReceivePackets,
|
|
|
|
lastValue: -1,
|
|
|
|
tags: tags,
|
|
|
|
meta: meta_unit_pkts,
|
|
|
|
meta_rates: meta_unit_pkts_per_sec,
|
2022-03-11 13:48:18 +01:00
|
|
|
},
|
|
|
|
{
|
2022-03-11 14:47:18 +01:00
|
|
|
name: "net_bytes_out",
|
|
|
|
index: fieldTransmitBytes,
|
|
|
|
lastValue: -1,
|
|
|
|
tags: tags,
|
|
|
|
meta: meta_unit_byte,
|
|
|
|
meta_rates: meta_unit_byte_per_sec,
|
2022-03-11 13:48:18 +01:00
|
|
|
},
|
|
|
|
{
|
2022-03-11 14:47:18 +01:00
|
|
|
name: "net_pkts_out",
|
|
|
|
index: fieldTransmitPackets,
|
|
|
|
lastValue: -1,
|
|
|
|
tags: tags,
|
|
|
|
meta: meta_unit_pkts,
|
|
|
|
meta_rates: meta_unit_pkts_per_sec,
|
2022-03-11 13:48:18 +01:00
|
|
|
},
|
2022-02-18 02:25:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-11 13:48:18 +01:00
|
|
|
|
|
|
|
if len(m.matches) == 0 {
|
2022-02-18 02:25:23 +01:00
|
|
|
return errors.New("no devices to collector metrics found")
|
2021-10-04 15:47:03 +02:00
|
|
|
}
|
2022-02-18 02:25:23 +01:00
|
|
|
m.init = true
|
2021-05-14 19:21:16 +02:00
|
|
|
return nil
|
2021-03-25 14:47:35 +01:00
|
|
|
}
|
|
|
|
|
2024-12-19 23:00:14 +01:00
|
|
|
func (m *NetstatCollector) Read(interval time.Duration, output chan lp.CCMessage) {
|
2022-02-18 02:25:23 +01:00
|
|
|
if !m.init {
|
|
|
|
return
|
|
|
|
}
|
2022-03-11 13:48:18 +01:00
|
|
|
// Current time stamp
|
2022-02-18 02:25:23 +01:00
|
|
|
now := time.Now()
|
2022-03-11 13:48:18 +01:00
|
|
|
// time difference to last time stamp
|
|
|
|
timeDiff := now.Sub(m.lastTimestamp).Seconds()
|
|
|
|
// Save current timestamp
|
|
|
|
m.lastTimestamp = now
|
|
|
|
|
2025-02-19 11:32:15 +01:00
|
|
|
file, err := os.Open(NETSTATFILE)
|
2021-03-25 14:47:35 +01:00
|
|
|
if err != nil {
|
2022-02-18 02:25:23 +01:00
|
|
|
cclog.ComponentError(m.name, err.Error())
|
2021-03-25 14:47:35 +01:00
|
|
|
return
|
|
|
|
}
|
2022-02-18 02:25:23 +01:00
|
|
|
defer file.Close()
|
2021-03-25 14:47:35 +01:00
|
|
|
|
2022-02-18 02:25:23 +01:00
|
|
|
scanner := bufio.NewScanner(file)
|
|
|
|
for scanner.Scan() {
|
|
|
|
l := scanner.Text()
|
2022-03-11 13:48:18 +01:00
|
|
|
|
|
|
|
// Skip lines with no net device entry
|
2021-03-25 14:47:35 +01:00
|
|
|
if !strings.Contains(l, ":") {
|
|
|
|
continue
|
|
|
|
}
|
2022-03-11 13:48:18 +01:00
|
|
|
|
|
|
|
// Split line into fields
|
2021-03-25 14:47:35 +01:00
|
|
|
f := strings.Fields(l)
|
2022-03-11 13:48:18 +01:00
|
|
|
|
2025-02-19 11:32:15 +01:00
|
|
|
// Get raw and canonical names
|
|
|
|
raw := strings.Trim(f[0], ":")
|
|
|
|
canonical := getCanonicalName(raw, m.aliasToCanonical)
|
2022-02-18 02:25:23 +01:00
|
|
|
|
2022-03-11 13:48:18 +01:00
|
|
|
// Check if device is a included device
|
2025-02-19 11:32:15 +01:00
|
|
|
if devmetrics, ok := m.matches[canonical]; ok {
|
2022-03-11 13:48:18 +01:00
|
|
|
for i := range devmetrics {
|
|
|
|
metric := &devmetrics[i]
|
|
|
|
|
|
|
|
// Read value
|
|
|
|
v, err := strconv.ParseInt(f[metric.index], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if m.config.SendAbsoluteValues {
|
2024-12-19 23:00:14 +01:00
|
|
|
if y, err := lp.NewMessage(metric.name, metric.tags, metric.meta, map[string]interface{}{"value": v}, now); err == nil {
|
2022-03-11 13:48:18 +01:00
|
|
|
output <- y
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
2022-03-11 13:48:18 +01:00
|
|
|
}
|
|
|
|
if m.config.SendDerivedValues {
|
|
|
|
if metric.lastValue >= 0 {
|
|
|
|
rate := float64(v-metric.lastValue) / timeDiff
|
2024-12-19 23:00:14 +01:00
|
|
|
if y, err := lp.NewMessage(metric.name+"_bw", metric.tags, metric.meta_rates, map[string]interface{}{"value": rate}, now); err == nil {
|
2022-03-11 13:48:18 +01:00
|
|
|
output <- y
|
2022-02-18 02:25:23 +01:00
|
|
|
}
|
|
|
|
}
|
2022-03-11 13:48:18 +01:00
|
|
|
metric.lastValue = v
|
2021-10-04 15:23:43 +02:00
|
|
|
}
|
2021-03-25 14:47:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *NetstatCollector) Close() {
|
2021-10-04 15:47:03 +02:00
|
|
|
m.init = false
|
2021-03-25 14:47:35 +01:00
|
|
|
}
|