src/collectors/ebpf.plugin/ebpfgo.plugin/integrations/ebpf_cachestat.md
Plugin: ebpf-go.plugin Module: cachestat
Monitor Linux page cache events giving users a general vision about how the kernel is manipulating files.
Attach tracing (kprobe, trampoline) to internal kernel functions according options used to compile kernel.
This collector is only supported on the following platforms:
This collector supports collecting metrics from multiple instances of this integration, including remote instances.
The plugin needs setuid because it loads data inside kernel. Netdata sets necessary permission during installation time.
eBPF Cachestat can be monitored further using the following other integrations:
The plugin checks kernel compilation flags (CONFIG_KPROBES, CONFIG_BPF, CONFIG_BPF_SYSCALL, CONFIG_BPF_JIT), presence of BTF files, and the configured object flavor to decide which eBPF program will be attached.
The default configuration for this integration does not impose any limits on data collection.
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.
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 according to the 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 defined pattern, but distributions can deliver their configuration files
with different names.
Now follow steps:
initrd) if it is necessary.All options are defined inside section [global].
| Option | Description | Default | Required |
|---|---|---|---|
| update every | Data collection frequency. This configuration value takes precedence over the runtime interval passed by pluginsd. | 10 | no |
| ebpf load mode | Legacy compatibility option. eBPFGo accepts entry; return is not supported and is ignored with a warning. | entry | no |
| apps | Enable or disable integration with apps.plugin | no | no |
| cgroups | Enable or disable integration with cgroup.plugin | no | no |
| pid table size | Number of elements stored inside hash tables used to monitor calls per PID. | 32768 | no |
| ebpf object flavor | Select the cachestat object flavor to load. Available values are arena, buffer ring (also accepted as buffer), and legacy (also accepted as tracing). The default is buffer, and the collector falls back when the requested flavor is not available on the system. | buffer | no |
| ebpf type format | Define 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). | auto | no |
| ebpf co-re tracing | Select 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). | trampoline | no |
| maps per core | Define how plugin will load their hash maps. When enabled (yes) plugin will load one hash table per core, instead to have centralized information. | yes | no |
| btf path | Override the default BTF source directory. The collector checks this path for a vmlinux BTF file used by CO-RE loading. | /sys/kernel/btf | no |
| collect pid | Controls which PIDs are stored in the BPF hash tables. real parent stores only the real parent PID (lowest overhead); parent stores the immediate parent PID; all stores every PID used by the process (highest overhead). | real parent | no |
| lifetime | Set default lifetime for thread when enabled by cloud. | 300 | no |
The configuration file name for this integration is ebpf.d.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.conf
There are no configuration examples.
There are no alerts configured by default for this integration.
Metrics grouped by scope.
The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.
These metrics show total number of calls to functions inside kernel.
This scope has no labels.
Metrics:
| Metric | Description | Dimensions | Unit |
|---|---|---|---|
| mem.cachestat_ratio | Hit ratio | ratio | % |
| mem.cachestat_dirties | Number of dirty pages | dirty | page/s |
| mem.cachestat_hits | Number of accessed files | hit | hits/s |
| mem.cachestat_misses | Files out of page cache | miss | misses/s |