2017-04-11 08:45:19 -07:00
|
|
|
// Copyright 2017 The Prometheus Authors
|
|
|
|
// 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.
|
|
|
|
|
2021-10-03 04:35:24 -07:00
|
|
|
//go:build !noarp
|
2017-04-11 08:45:19 -07:00
|
|
|
// +build !noarp
|
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2023-03-07 00:25:05 -08:00
|
|
|
"github.com/alecthomas/kingpin/v2"
|
2020-11-14 02:53:51 -08:00
|
|
|
"github.com/go-kit/log"
|
2017-04-11 08:45:19 -07:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2022-12-13 07:45:49 -08:00
|
|
|
"github.com/prometheus/procfs"
|
2021-12-16 05:13:20 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
arpDeviceInclude = kingpin.Flag("collector.arp.device-include", "Regexp of arp devices to include (mutually exclusive to device-exclude).").String()
|
|
|
|
arpDeviceExclude = kingpin.Flag("collector.arp.device-exclude", "Regexp of arp devices to exclude (mutually exclusive to device-include).").String()
|
2017-04-11 08:45:19 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
type arpCollector struct {
|
2022-12-13 07:45:49 -08:00
|
|
|
fs procfs.FS
|
2022-05-19 01:31:48 -07:00
|
|
|
deviceFilter deviceFilter
|
2021-12-16 05:13:20 -08:00
|
|
|
entries *prometheus.Desc
|
|
|
|
logger log.Logger
|
2017-04-11 08:45:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2017-09-28 06:06:26 -07:00
|
|
|
registerCollector("arp", defaultEnabled, NewARPCollector)
|
2017-04-11 08:45:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewARPCollector returns a new Collector exposing ARP stats.
|
2019-12-31 08:19:37 -08:00
|
|
|
func NewARPCollector(logger log.Logger) (Collector, error) {
|
2022-12-13 07:45:49 -08:00
|
|
|
fs, err := procfs.NewFS(*procPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to open procfs: %w", err)
|
|
|
|
}
|
|
|
|
|
2017-04-11 08:45:19 -07:00
|
|
|
return &arpCollector{
|
2022-12-13 07:45:49 -08:00
|
|
|
fs: fs,
|
2022-05-19 01:31:48 -07:00
|
|
|
deviceFilter: newDeviceFilter(*arpDeviceExclude, *arpDeviceInclude),
|
2017-04-11 08:45:19 -07:00
|
|
|
entries: prometheus.NewDesc(
|
2017-09-28 06:06:26 -07:00
|
|
|
prometheus.BuildFQName(namespace, "arp", "entries"),
|
2017-04-11 08:45:19 -07:00
|
|
|
"ARP entries by device",
|
|
|
|
[]string{"device"}, nil,
|
|
|
|
),
|
2019-12-31 08:19:37 -08:00
|
|
|
logger: logger,
|
2017-04-11 08:45:19 -07:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2022-12-13 07:45:49 -08:00
|
|
|
func getTotalArpEntries(deviceEntries []procfs.ARPEntry) map[string]uint32 {
|
2017-04-11 08:45:19 -07:00
|
|
|
entries := make(map[string]uint32)
|
|
|
|
|
2022-12-13 07:45:49 -08:00
|
|
|
for _, device := range deviceEntries {
|
2022-12-16 10:08:27 -08:00
|
|
|
entries[device.Device]++
|
2017-04-11 08:45:19 -07:00
|
|
|
}
|
|
|
|
|
2022-12-13 07:45:49 -08:00
|
|
|
return entries
|
2017-04-11 08:45:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *arpCollector) Update(ch chan<- prometheus.Metric) error {
|
2022-12-13 07:45:49 -08:00
|
|
|
entries, err := c.fs.GatherARPEntries()
|
2017-04-11 08:45:19 -07:00
|
|
|
if err != nil {
|
2020-06-15 13:27:14 -07:00
|
|
|
return fmt.Errorf("could not get ARP entries: %w", err)
|
2017-04-11 08:45:19 -07:00
|
|
|
}
|
|
|
|
|
2022-12-13 07:45:49 -08:00
|
|
|
enumeratedEntry := getTotalArpEntries(entries)
|
|
|
|
|
2022-12-16 04:53:13 -08:00
|
|
|
for device, entryCount := range enumeratedEntry {
|
2021-12-16 05:13:20 -08:00
|
|
|
if c.deviceFilter.ignored(device) {
|
|
|
|
continue
|
|
|
|
}
|
2017-04-11 08:45:19 -07:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
2022-12-16 04:53:13 -08:00
|
|
|
c.entries, prometheus.GaugeValue, float64(entryCount), device)
|
2017-04-11 08:45:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|