2015-11-02 20:31:34 -08:00
// Copyright 2015 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.
// +build !nonetdev
2016-12-29 09:23:34 -08:00
// +build linux freebsd openbsd dragonfly darwin
2015-11-02 20:31:34 -08:00
package collector
import (
2019-05-31 08:55:50 -07:00
"errors"
2015-11-02 20:31:34 -08:00
"fmt"
"regexp"
"strconv"
2019-12-31 08:19:37 -08:00
"github.com/go-kit/kit/log"
2015-11-02 20:31:34 -08:00
"github.com/prometheus/client_golang/prometheus"
2017-08-12 06:07:24 -07:00
"gopkg.in/alecthomas/kingpin.v2"
2015-11-02 20:31:34 -08:00
)
var (
2019-05-31 08:55:50 -07:00
netdevIgnoredDevices = kingpin . Flag ( "collector.netdev.device-blacklist" , "Regexp of net devices to blacklist (mutually exclusive to device-whitelist)." ) . String ( )
netdevAcceptDevices = kingpin . Flag ( "collector.netdev.device-whitelist" , "Regexp of net devices to whitelist (mutually exclusive to device-blacklist)." ) . String ( )
2015-11-02 20:31:34 -08:00
)
type netDevCollector struct {
subsystem string
ignoredDevicesPattern * regexp . Regexp
2019-05-31 08:55:50 -07:00
acceptDevicesPattern * regexp . Regexp
2015-11-02 20:31:34 -08:00
metricDescs map [ string ] * prometheus . Desc
2019-12-31 08:19:37 -08:00
logger log . Logger
2015-11-02 20:31:34 -08:00
}
func init ( ) {
2017-09-28 06:06:26 -07:00
registerCollector ( "netdev" , defaultEnabled , NewNetDevCollector )
2015-11-02 20:31:34 -08:00
}
// NewNetDevCollector returns a new Collector exposing network device stats.
2019-12-31 08:19:37 -08:00
func NewNetDevCollector ( logger log . Logger ) ( Collector , error ) {
2019-05-31 08:55:50 -07:00
if * netdevIgnoredDevices != "" && * netdevAcceptDevices != "" {
return nil , errors . New ( "device-blacklist & accept-devices are mutually exclusive" )
}
var ignorePattern * regexp . Regexp = nil
if * netdevIgnoredDevices != "" {
ignorePattern = regexp . MustCompile ( * netdevIgnoredDevices )
}
var acceptPattern * regexp . Regexp = nil
if * netdevAcceptDevices != "" {
acceptPattern = regexp . MustCompile ( * netdevAcceptDevices )
}
2015-11-02 20:31:34 -08:00
return & netDevCollector {
subsystem : "network" ,
2019-05-31 08:55:50 -07:00
ignoredDevicesPattern : ignorePattern ,
acceptDevicesPattern : acceptPattern ,
2015-11-02 20:31:34 -08:00
metricDescs : map [ string ] * prometheus . Desc { } ,
2019-12-31 08:19:37 -08:00
logger : logger ,
2015-11-02 20:31:34 -08:00
} , nil
}
2017-02-28 10:47:20 -08:00
func ( c * netDevCollector ) Update ( ch chan <- prometheus . Metric ) error {
2019-12-31 08:19:37 -08:00
netDev , err := getNetDevStats ( c . ignoredDevicesPattern , c . acceptDevicesPattern , c . logger )
2015-11-02 20:31:34 -08:00
if err != nil {
return fmt . Errorf ( "couldn't get netstats: %s" , err )
}
for dev , devStats := range netDev {
for key , value := range devStats {
desc , ok := c . metricDescs [ key ]
if ! ok {
desc = prometheus . NewDesc (
2017-12-21 07:24:23 -08:00
prometheus . BuildFQName ( namespace , c . subsystem , key + "_total" ) ,
2015-11-02 20:31:34 -08:00
fmt . Sprintf ( "Network device statistic %s." , key ) ,
[ ] string { "device" } ,
nil ,
)
c . metricDescs [ key ] = desc
}
v , err := strconv . ParseFloat ( value , 64 )
if err != nil {
return fmt . Errorf ( "invalid value %s in netstats: %s" , value , err )
}
2017-12-06 04:58:35 -08:00
ch <- prometheus . MustNewConstMetric ( desc , prometheus . CounterValue , v , dev )
2015-11-02 20:31:34 -08:00
}
}
return nil
}