Skip to main content

eBPF Socket

Plugin: ebpf.plugin Module: socket

Overview

Monitor bandwidth consumption per application for protocols TCP and UDP.

Attach tracing (kprobe, trampoline) to internal kernel functions according options used to compile kernel.

This collector is only supported on the following platforms:

  • Linux

This collector supports collecting metrics from multiple instances of this integration, including remote instances.

The plugin needs setuid because it loads data inside kernel. Netada sets necessary permission during installation time.

eBPF Socket can be monitored further using the following other integrations:

Default Behavior

Auto-Detection

The plugin checks kernel compilation flags (CONFIG_KPROBES, CONFIG_BPF, CONFIG_BPF_SYSCALL, CONFIG_BPF_JIT) and presence of BTF files to decide which eBPF program will be attached.

Limits

The default configuration for this integration does not impose any limits on data collection.

Performance Impact

This thread will add overhead every time that an internal kernel function monitored by this thread is called. The estimated additional period of time is between 90-200ns per call on kernels that do not have BTF technology.

Setup

Prerequisites

Compile kernel

Check if your kernel was compiled with necessary options (CONFIG_KPROBES, CONFIG_BPF, CONFIG_BPF_SYSCALL, CONFIG_BPF_JIT) in /proc/config.gz or inside /boot/config file. Some cited names can be different accoring preferences of Linux distributions. When you do not have options set, it is necessary to get the kernel source code from https://kernel.org or a kernel package from your distribution, this last is preferred. The kernel compilation has a well definedd pattern, but distributions can deliver their configuration files with different names.

Now follow steps:

  1. Copy the configuration file to /usr/src/linux/.config.
  2. Select the necessary options: make oldconfig
  3. Compile your kernel image: make bzImage
  4. Compile your modules: make modules
  5. Copy your new kernel image for boot loader directory
  6. Install the new modules: make modules_install
  7. Generate an initial ramdisk image (initrd) if it is necessary.
  8. Update your boot loader

Configuration

Options

All options are defined inside section [global]. Options inside network connections are ignored for while.

Config options
OptionDescriptionDefaultRequired
update everyData collection frequency.10no
ebpf load modeDefine whether plugin will monitor the call (entry) for the functions or it will also monitor the return (return).entryno
appsEnable or disable integration with apps.pluginnono
cgroupsEnable or disable integration with cgroup.pluginnono
bandwidth table sizeNumber of elements stored inside hash tables used to monitor calls per PID.16384no
ipv4 connection table sizeNumber of elements stored inside hash tables used to monitor calls per IPV4 connections.16384no
ipv6 connection table sizeNumber of elements stored inside hash tables used to monitor calls per IPV6 connections.16384no
udp connection table sizeNumber of temporary elements stored inside hash tables used to monitor UDP connections.4096no
ebpf type formatDefine the file type to load an eBPF program. Three options are available: legacy (Attach only kprobe), co-re (Plugin tries to use trampoline when available), and auto (plugin check OS configuration before to load).autono
ebpf co-re tracingSelect the attach method used by plugin when co-re is defined in previous option. Two options are available: trampoline (Option with lowest overhead), and probe (the same of legacy code).trampolineno
maps per coreDefine how plugin will load their hash maps. When enabled (yes) plugin will load one hash table per core, instead to have centralized information.yesno
lifetimeSet default lifetime for thread when enabled by cloud.300no

via File

The configuration file name for this integration is ebpf.d/network.conf.

The file format is a modified INI syntax. The general structure is:

[section1]
option1 = some value
option2 = some other value

[section2]
option3 = some third value

You can edit the configuration file using the edit-config script from the Netdata config directory.

cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
sudo ./edit-config ebpf.d/network.conf
Examples

There are no configuration examples.

Alerts

There are no alerts configured by default for this integration.

Metrics

Metrics grouped by scope.

The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.

Per eBPF Socket instance

These metrics show total number of calls to functions inside kernel.

This scope has no labels.

Metrics:

MetricDescriptionDimensionsUnit
ip.inbound_connInbound connections.connected_tcp, connected_udpconnections/s
ip.tcp_outbound_connTCP outbound connections.receivedconnections/s
ip.tcp_functionsCalls to internal functionsreceived, send, closedcalls/s
ip.total_tcp_bandwidthTCP bandwidthreceived, sendkilobits/s
ip.tcp_errorTCP errorsreceived, sendcalls/s
ip.tcp_retransmitPackages retransmittedretransmittedcalls/s
ip.udp_functionsUDP callsreceived, sendcalls/s
ip.total_udp_bandwidthUDP bandwidthreceived, sendkilobits/s
ip.udp_errorUDP errorsreceived, sendcalls/s

Per apps

These metrics show grouped information per apps group.

Labels:

LabelDescription
app_groupThe name of the group defined in the configuration.

Metrics:

MetricDescriptionDimensionsUnit
app.ebpf_call_tcp_v4_connectionCalls to tcp_v4_connectionconnectionsconnections/s
app.ebpf_call_tcp_v6_connectionCalls to tcp_v6_connectionconnectionsconnections/s
app.ebpf_sock_total_bandwidthBytes sentreceived, sentkilobits/s
app.ebpf_call_tcp_sendmsgCalls for tcp_sendmsgcallscalls/s
app.ebpf_call_tcp_cleanup_rbufCalls for tcp_cleanup_rbufcallscalls/s
app.ebpf_call_tcp_retransmitCalls for tcp_retransmitcallscalls/s
app.ebpf_call_udp_sendmsgCalls for udp_sendmsgcallscalls/s
app.ebpf_call_udp_recvmsgCalls for udp_recvmsgcallscalls/s

Per cgroup

This scope has no labels.

Metrics:

MetricDescriptionDimensionsUnit
cgroup.net_conn_ipv4Calls to tcp_v4_connectionconnectionsconnections/s
cgroup.net_conn_ipv6Calls to tcp_v6_connectionconnectionsconnections/s
cgroup.net_total_bandwidthBytes receivedreceived, sentkilobits/s
cgroup.net_tcp_recvCalls to tcp_cleanup_rbuf.callscalls/s
cgroup.net_tcp_sendCalls to tcp_sendmsg.callscalls/s
cgroup.net_retransmitCalls to tcp_retransmit.callscalls/s
cgroup.net_udp_sendCalls to udp_sendmsgcallscalls/s
cgroup.net_udp_recvCalls to udp_recvmsgcallscalls/s
services.net_conn_ipv4Calls to tcp_v4_connectionconnectionsconnections/s
services.net_conn_ipv6Calls to tcp_v6_connectionconnectionsconnections/s
services.net_total_bandwidthBytes receivedreceived, sentkilobits/s
services.net_tcp_recvCalls to tcp_cleanup_rbuf.callscalls/s
services.net_tcp_sendCalls to tcp_sendmsg.callscalls/s
services.net_tcp_retransmitCalls to tcp_retransmitcallscalls/s
services.net_udp_sendCalls to udp_sendmsgcallscalls/s
services.net_udp_recvCalls to udp_recvmsgcallscalls/s

Do you have any feedback for this page? If so, you can open a new issue on our netdata/learn repository.