sriov-network-metrics-exporter

module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 8, 2023 License: Apache-2.0

README

SR-IOV Network Metrics Exporter

Exporter that reads metrics for SR-IOV Virtual Functions and exposes them in the Prometheus format.

The SR-IOV Network Metrics Exporter is designed with the Kubernetes SR-IOV stack in mind, including the SR-IOV CNI and the SR-IOV Network Device Plugin. Only devices allocated with the SR-IOV Network Device Plugin will be able to be matched to specific Virtual Function metrics.

This software is a pre-production alpha version and should not be deployed to production servers.

Hardware support

The sysfs collector for Virtual Function telemetry supports NICs with drivers that implement the SR-IOV sysfs management interface e.g. ice, i40e, mlnx_en and mlnx_ofed.

The netlink collector relies on driver support and a kernel version of 4.4 or higher. To support netlink, we recommend these driver versions: an i40e driver of 2.11+ or higher for Intel® 700 series NICs and ice driver 1.2+ for Intel® 800 series NICs.

To check your current driver version run: modinfo <driver> | grep ^version where driver is i40e or ice
i40e drivers: Intel Download Center, Source Forge
ice drivers: Intel Download Center, Source Forge

Metrics

This exporter will make the following metrics available:

  • sriov_vf_rx_bytes: Received bytes per virtual function
  • sriov_vf_tx_bytes: Transmitted bytes per virtual function
  • sriov_vf_rx_packets: Received packets per virtual function
  • sriov_vf_tx_packets: Transmitted packets per virtual function
  • sriov_vf_rx_dropped: Dropped packets on receipt per virtual function
  • sriov_vf_tx_dropped: Dropped packets on transmit per virtual function
  • sriov_vf_tx_errors: Transmit errors per virtual function
  • kubepoddevice: Virtual functions linked to active pods
  • kubepodcpu: CPUs linked to pods (Guaranteed Pods managed by CPU Manager Static policy only)

Usage

Once the SR-IOV Network Metrics Exporter is up and running metrics can be queried in the usual way from Prometheus. The following PromQL query returns virtual function metrics with the name and namespace of the Pod it is attached to:

(sriov_vf_tx_errors * on (pciAddr)  group_left(pod,namespace)  sriov_kubepoddevice)

To get more detailed information about the pod the above can be joined with information from Kube State Metrics.

For example, to get the VF along with the application name from the standard Kubernetes pod label:

(sriov_vf_tx_errors * on (pciAddr)  group_left(pod,namespace)  sriov_kubepoddevice) * on (pod,namespace) group_left (label_app_kubernetes_io_name) kube_pod_labels

Once available through Prometheus VF metrics can be used by metrics applications like Grafana, or the Horizontal Pod Autoscaler.

Installation

Kubernetes installation
Building images

Typical deployment is as a daemonset in a cluster. A daemonset requires the image to be available on each node in the cluster or at a registry accessible from each node. The following assumes a local Docker registry available at localhost:5000, and assumes Docker is being used to build and manage containers in the cluster.

In order to build the container and load it to a local registry run:

docker build . -t localhost:5000/sriov-metrics-exporter && docker push localhost:5000/sriov-metrics-exporter

or

make docker-build && make docker-push

The above assumes a registry available across the cluster at localhost:5000, for example on using the Docker Registry Proxy. If your registry is at a different address the image name will need to be changed to reflect that in the Kubernetes daemonset

Labeling nodes

SR-IOV Network Metrics Exporter will only be deployed on nodes labeled with "feature.node.kubernetes.io/network-sriov.capable": "true" label. You can label the nodes automatically using Node Feature Discovery, or manually, executing the following kubectl command:

kubectl label node <nodename> feature.node.kubernetes.io/network-sriov.capable="true"

If you prefer to use the Node Feature Discovery you can refer to the Quick-start guide on the project's repository.

Deploying SR-IOV Network Metrics Exporter

Create monitoring namespace:

kubectl create namespace monitoring

Once the image is available from each node in the cluster run:

kubectl apply -f deployment/daemonset.yaml

This will create the daemonset and set it running. To ensure it's running as expected run:

kubectl -n monitoring exec -it $(kubectl get pods -nmonitoring -o=jsonpath={.items[0].metadata.name} -lapp.kubernetes.io/name=sriov-metrics-exporter) -- wget -O- localhost:9808/metrics

The output of this command - which pulls data from the endpoint of the first instance of SR-IOV Network Metrics Exporter - should look something like:

sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.0",pf="ens785f2",vf="0"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.1",pf="ens785f2",vf="1"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.2",pf="ens785f2",vf="2"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.3",pf="ens785f2",vf="3"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.4",pf="ens785f2",vf="4"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.5",pf="ens785f2",vf="5"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.6",pf="ens785f2",vf="6"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.7",pf="ens785f2",vf="7"} 0

The above may show other metrics if there are no applicable SR-IOV Virtual Functions available on the system. Any metrics at all shows the pod is up and running and exposing metrics.

Configuring Prometheus for in-Cluster installation

In order to expose these metrics to Prometheus we need to configure the database to scrape our new endpoint. With the service contained in the daemonset file this can be done by adding:

      - job_name: 'sriov-metrics'
        kubernetes_sd_configs:
        - role: endpoints
        relabel_configs:
        - source_labels: [__meta_kubernetes_endpoint_node_name]
          target_label: instance
        - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_target]
          action: keep
          regex: true
        static_configs:
        - targets: ['sriov-metrics-exporter.monitoring.svc.cluster.local']
        scheme: http

The above should be added to the Prometheus configuration as a new target. For more about configuring Prometheus see the official guide. Once Prometheus is started with this included in its config sriov-metrics should appear on the "Targets page". Metrics should be available by querying the Prometheus API or in the web interface.

In this mode it will serve stats on an endpoint inside the cluster. Prometheus will detect the label on the service endpoint through the above configuration.

Standalone installation to an endpoint on the host.

To run as standalone the SR-IOV Metrics exporter will have to be run on each host in the cluster. Go 1.14+ is required to build the exporter. Run: make build The binary should then be started on each relevant host in the cluster. Once running hitting the endpoint with:

curl localhost:9808/metrics

Will produce a list of metrics looking something like:

sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.0",pf="ens785f2",vf="0"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.1",pf="ens785f2",vf="1"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.2",pf="ens785f2",vf="2"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.3",pf="ens785f2",vf="3"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.4",pf="ens785f2",vf="4"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.5",pf="ens785f2",vf="5"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.6",pf="ens785f2",vf="6"} 0
sriov_vf_tx_packets{numa_node="0",pciAddr="0000:02:0a.7",pf="ens785f2",vf="7"} 0

Note: The exact metrics will depend on the set up of each system, but the format will be similar.

Configuring Prometheus for standalone installation

With the default settings the SR-IOV Network Metrics Exporter will expose metrics at port 9808. The below configuration will tell Prometheus to scrape this port and each and every host in the cluster.

      - job_name: 'sriov-metrics-standalone'
        scheme: http
        kubernetes_sd_configs:
        - role: node
        relabel_configs:
        - source_labels: [__address__]
          regex: ^(.*):\d+$
          target_label: __address__
          replacement: $1:9808
        - target_label: __scheme__
          replacement: http

The above should be added to the Prometheus configuration as a new target. For more about configuring Prometheus see the official guide. Once Prometheus is started with this included in its config sriov-metrics-standalone should appear on the "Targets page". Metrics should be available by querying the Prometheus API or the web interface.

Configuration

A number of configuration flags can be passed to the SR-IOV Network Metrics Exporter in order to change enabled collectors, the paths it reads from and some properties of its web endpoint.

The collector.vfstatspriority flag defines the priority of vf stats collectors, each pf will use the first supported collector in the list.
Example: using the priority, "sysfs,netlink", with Intel® 700 and 800 series NICs installed and vfs initialized, the sysfs collector will be used for the 700 series NIC, and netlink for the 800 series NIC since it doesn't support sysfs collection, therefore it falls back to the netlink driver.

Flag Type Description Default Value
collector.kubepodcpu boolean Enables the kubepodcpu collector false
collector.kubepoddevice boolean Enables the kubepoddevice collector false
collector.vfstatspriority string Sets the priority of vfstats collectors sysfs,netlink
collector.sysfs boolean Enables using sr-iov sysfs for vfstats collection true
collector.netlink boolean Enables using netlink for vfstats collection true
path.cpucheckpoint string Path for location of cpu manager checkpoint file /var/lib/kubelet/cpu_manager_state
path.kubecgroup string Path for location of kubernetes cgroups on the host system /sys/fs/cgroup/cpuset/kubepods/
path.kubeletsocket string Path to kubelet resources socket /var/lib/kubelet/pod-resources/kubelet.sock
path.nodecpuinfo string Path for location of system cpu information /sys/devices/system/node/
path.sysbuspci string Path to sys/bus/pci on host /sys/bus/pci/devices
path.sysclassnet string Path to sys/class/net on host /sys/class/net/
web.listen-address string Address to listen on for web interface and telemetry :9808
web.rate-burst int Maximum per second burst rate for requests 10
web.rate-limit int Limit for requests per second 1

Communication and contribution

Report a bug by filing a new issue.

Contribute by opening a pull request.

Learn about pull requests.

Directories

Path Synopsis
pkg
vfstats
Package vfstats contains methods to pull the SRIOV stats from various locations in linux
Package vfstats contains methods to pull the SRIOV stats from various locations in linux

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL