cc-metric-collector/collectors/netstatMetric.go

87 lines
1.6 KiB
Go
Raw Normal View History

package collectors
import (
2021-11-25 15:11:39 +01:00
"encoding/json"
2021-10-04 15:23:43 +02:00
lp "github.com/influxdata/line-protocol"
"io/ioutil"
2021-03-25 17:47:08 +01:00
"log"
"strconv"
"strings"
"time"
)
const NETSTATFILE = `/proc/net/dev`
type NetstatCollectorConfig struct {
2021-11-25 15:11:39 +01:00
ExcludeDevices []string `json:"exclude_devices, omitempty"`
}
type NetstatCollector struct {
MetricCollector
2021-11-25 15:11:39 +01:00
config NetstatCollectorConfig
2021-10-04 15:23:43 +02:00
matches map[int]string
}
func (m *NetstatCollector) Init(config []byte) error {
2021-03-25 17:47:08 +01:00
m.name = "NetstatCollector"
m.setup()
2021-10-04 15:23:43 +02:00
m.matches = map[int]string{
1: "bytes_in",
9: "bytes_out",
2: "pkts_in",
10: "pkts_out",
}
err := json.Unmarshal(config, &m.config)
if err != nil {
2021-11-25 15:11:39 +01:00
log.Print(err.Error())
return err
}
_, err = ioutil.ReadFile(string(NETSTATFILE))
2021-10-04 15:23:43 +02:00
if err == nil {
2021-10-04 15:47:03 +02:00
m.init = true
}
return nil
}
2021-10-04 15:23:43 +02:00
func (m *NetstatCollector) Read(interval time.Duration, out *[]lp.MutableMetric) {
data, err := ioutil.ReadFile(string(NETSTATFILE))
if err != nil {
log.Print(err.Error())
return
}
lines := strings.Split(string(data), "\n")
for _, l := range lines {
if !strings.Contains(l, ":") {
continue
}
f := strings.Fields(l)
dev := f[0][0 : len(f[0])-1]
cont := false
for _, d := range m.config.ExcludeDevices {
2021-11-25 15:11:39 +01:00
if d == dev {
cont = true
}
}
if cont {
continue
}
2021-11-25 15:11:39 +01:00
tags := map[string]string{"device": dev, "type": "node"}
2021-10-04 15:23:43 +02:00
for i, name := range m.matches {
v, err := strconv.ParseInt(f[i], 10, 0)
if err == nil {
y, err := lp.New(name, tags, map[string]interface{}{"value": int(float64(v) * 1.0e-3)}, time.Now())
2021-10-04 15:23:43 +02:00
if err == nil {
*out = append(*out, y)
}
}
}
}
2021-03-25 17:47:08 +01:00
}
func (m *NetstatCollector) Close() {
2021-10-04 15:47:03 +02:00
m.init = false
2021-03-25 17:47:08 +01:00
return
}