Files
node-problem-detector/pkg/systemstatsmonitor/net_collector.go
2025-08-13 16:12:41 +00:00

297 lines
7.8 KiB
Go

/*
Copyright 2020 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package systemstatsmonitor
import (
"fmt"
ssmtypes "k8s.io/node-problem-detector/pkg/systemstatsmonitor/types"
"k8s.io/node-problem-detector/pkg/util/metrics"
"github.com/prometheus/procfs"
"k8s.io/klog/v2"
)
type newInt64MetricFn func(metricID metrics.MetricID, viewName string, description string, unit string, aggregation metrics.Aggregation, tagNames []string) (metrics.Int64MetricInterface, error)
// newInt64Metric is a wrapper of metrics.NewInt64Metric that returns an interface instead of the specific type
func newInt64Metric(metricID metrics.MetricID, viewName string, description string, unit string, aggregation metrics.Aggregation, tagNames []string) (metrics.Int64MetricInterface, error) {
return metrics.NewInt64Metric(metricID, viewName, description, unit, aggregation, tagNames)
}
type netCollector struct {
config *ssmtypes.NetStatsConfig
procPath string
recorder *ifaceStatRecorder
}
func (nc *netCollector) initOrDie() {
nc.mustRegisterMetric(
metrics.NetDevRxBytes,
"Cumulative count of bytes received.",
"Byte",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.RxBytes)
},
)
nc.mustRegisterMetric(
metrics.NetDevRxPackets,
"Cumulative count of packets received.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.RxPackets)
},
)
nc.mustRegisterMetric(
metrics.NetDevRxErrors,
"Cumulative count of receive errors encountered.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.RxErrors)
},
)
nc.mustRegisterMetric(
metrics.NetDevRxDropped,
"Cumulative count of packets dropped while receiving.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.RxDropped)
},
)
nc.mustRegisterMetric(
metrics.NetDevRxFifo,
"Cumulative count of FIFO buffer errors.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.RxFIFO)
},
)
nc.mustRegisterMetric(
metrics.NetDevRxFrame,
"Cumulative count of packet framing errors.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.RxFrame)
},
)
nc.mustRegisterMetric(
metrics.NetDevRxCompressed,
"Cumulative count of compressed packets received by the device driver.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.RxCompressed)
},
)
nc.mustRegisterMetric(
metrics.NetDevRxMulticast,
"Cumulative count of multicast frames received by the device driver.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.RxMulticast)
},
)
nc.mustRegisterMetric(
metrics.NetDevTxBytes,
"Cumulative count of bytes transmitted.",
"Byte",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.TxBytes)
},
)
nc.mustRegisterMetric(
metrics.NetDevTxPackets,
"Cumulative count of packets transmitted.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.TxPackets)
},
)
nc.mustRegisterMetric(
metrics.NetDevTxErrors,
"Cumulative count of transmit errors encountered.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.TxErrors)
},
)
nc.mustRegisterMetric(
metrics.NetDevTxDropped,
"Cumulative count of packets dropped while transmitting.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.TxDropped)
},
)
nc.mustRegisterMetric(
metrics.NetDevTxFifo,
"Cumulative count of FIFO buffer errors.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.TxFIFO)
},
)
nc.mustRegisterMetric(
metrics.NetDevTxCollisions,
"Cumulative count of collisions detected on the interface.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.TxCollisions)
},
)
nc.mustRegisterMetric(
metrics.NetDevTxCarrier,
"Cumulative count of carrier losses detected by the device driver.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.TxCarrier)
},
)
nc.mustRegisterMetric(
metrics.NetDevTxCompressed,
"Cumulative count of compressed packets transmitted by the device driver.",
"1",
metrics.Sum,
func(stat procfs.NetDevLine) int64 {
return int64(stat.TxCompressed)
},
)
}
func NewNetCollectorOrDie(netConfig *ssmtypes.NetStatsConfig, procPath string) *netCollector {
nc := &netCollector{
config: netConfig,
procPath: procPath,
recorder: newIfaceStatRecorder(newInt64Metric),
}
nc.initOrDie()
return nc
}
func (nc *netCollector) mustRegisterMetric(metricID metrics.MetricID, description, unit string,
aggregation metrics.Aggregation, exporter func(stat procfs.NetDevLine) int64) {
metricConfig, ok := nc.config.MetricsConfigs[string(metricID)]
if !ok {
klog.Fatalf("Metric config `%q` not found", metricID)
}
err := nc.recorder.Register(metricID, metricConfig.DisplayName, description, unit,
aggregation, []string{interfaceNameLabel}, exporter)
if err != nil {
klog.Fatalf("Failed to initialize metric %q: %v", metricID, err)
}
}
func (nc *netCollector) recordNetDev() {
fs, err := procfs.NewFS(nc.procPath)
if err != nil {
klog.Errorf("Failed to open procfs: %v", err)
return
}
stats, err := fs.NetDev()
if err != nil {
klog.Errorf("Failed to retrieve net dev stat: %v", err)
return
}
excludeInterfaceRegexp := nc.config.ExcludeInterfaceRegexp.R
for iface, ifaceStats := range stats {
if excludeInterfaceRegexp != nil && excludeInterfaceRegexp.MatchString(iface) {
klog.V(6).Infof("Network interface %s matched exclude regexp %q, skipping recording", iface, excludeInterfaceRegexp)
continue
}
tags := map[string]string{}
tags[interfaceNameLabel] = iface
nc.recorder.RecordWithSameTags(ifaceStats, tags)
}
}
func (nc *netCollector) collect() {
if nc == nil {
return
}
nc.recordNetDev()
}
// TODO(@oif): Maybe implements a generic recorder
type ifaceStatRecorder struct {
// We use a function to allow injecting a mock for testing
newInt64Metric newInt64MetricFn
collectors map[metrics.MetricID]ifaceStatCollector
}
func newIfaceStatRecorder(newInt64Metric newInt64MetricFn) *ifaceStatRecorder {
return &ifaceStatRecorder{
newInt64Metric: newInt64Metric,
collectors: make(map[metrics.MetricID]ifaceStatCollector),
}
}
func (r *ifaceStatRecorder) Register(metricID metrics.MetricID, viewName string, description string,
unit string, aggregation metrics.Aggregation, tagNames []string, exporter func(procfs.NetDevLine) int64) error {
if _, ok := r.collectors[metricID]; ok {
// Check duplication
return fmt.Errorf("metric %q already registered", metricID)
}
metric, err := r.newInt64Metric(metricID, viewName, description, unit, aggregation, tagNames)
if err != nil {
return err
}
r.collectors[metricID] = ifaceStatCollector{
metric: metric,
exporter: exporter,
}
return nil
}
func (r ifaceStatRecorder) RecordWithSameTags(stat procfs.NetDevLine, tags map[string]string) {
// Range all registered collector and record its measurement with same tags
for metricID, collector := range r.collectors {
measurement := collector.exporter(stat)
collector.metric.Record(tags, measurement)
klog.V(6).Infof("Metric %q record measurement %d with tags %v", metricID, measurement, tags)
}
}
type ifaceStatCollector struct {
metric metrics.Int64MetricInterface
exporter func(procfs.NetDevLine) int64
}