Skip to main content

eBPF DCstat

Plugin: ebpf.plugin Module: dcstat

Overview

Monitor directory cache events per application given an overall vision about files on memory or storage device.

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.

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-200ms per call on kernels that do not have BTF technology.

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 apps

These Metrics show grouped information per apps group.

Labels:

LabelDescription
app_groupThe name of the group defined in the configuration.

Metrics:

MetricDimensionsUnit
app.ebpf_dc_ratioratio%
app.ebpf_dc_referencefilesfiles
app.ebpf_dc_not_cachefilesfiles
app.ebpf_dc_not_foundfilesfiles

Per filesystem

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

This scope has no labels.

Metrics:

MetricDimensionsUnit
filesystem.dc_referencereference, slow, missfiles
filesystem.dc_hit_ratioratio%

Per cgroup

This scope has no labels.

Metrics:

MetricDimensionsUnit
cgroup.dc_ratioratio%
cgroup.dc_referencereferencefiles
cgroup.dc_not_cacheslowfiles
cgroup.dc_not_foundmissfiles
services.dc_ratioa dimension per systemd service%
services.dc_referencea dimension per systemd servicefiles
services.dc_not_cachea dimension per systemd servicefiles
services.dc_not_founda dimension per systemd servicefiles

Alerts

There are no alerts configured by default for this integration.

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

File

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

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/dcstat.conf

Options

All options are defined inside section [global].

Config option
NameDescriptionDefaultRequired
update everyData collection frequency.5no
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
pid table sizeNumber of elements stored inside hash tables used to monitor calls per PID.32768no
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

Examples

There are no configuration examples.


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