master
md 147 lines 4.43 KB
Rendered Raw
1 <!--startmeta
2 custom_edit_url: "https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_mdflush.md"
3 meta_yaml: "https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml"
4 sidebar_label: "eBPF MDflush"
5 learn_status: "Published"
6 learn_rel_path: "Collecting Metrics/Collectors/Storage and Filesystems"
7 keywords: ['MD', 'RAID', 'eBPF']
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
10
11 # eBPF MDflush
12
13
14 <img src="https://netdata.cloud/img/ebpf.jpg" width="150"/>
15
16
17 Plugin: ebpf.plugin
18 Module: mdflush
19
20 <img src="https://img.shields.io/badge/maintained%20by-Netdata-%2300ab44" />
21
22 ## Overview
23
24 Monitor when flush events happen between disks.
25
26 Attach tracing (kprobe, trampoline) to internal kernel functions according options used to compile kernel.
27
28 This collector is only supported on the following platforms:
29
30 - Linux
31
32 This collector supports collecting metrics from multiple instances of this integration, including remote instances.
33
34 The plugin needs setuid because it loads data inside kernel. Netada sets necessary permission during installation time.
35
36 ### Default Behavior
37
38 #### Auto-Detection
39
40 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.
41
42 #### Limits
43
44 The default configuration for this integration does not impose any limits on data collection.
45
46 #### Performance Impact
47
48 This thread will add overhead every time that `md_flush_request` is called. The estimated additional period of time is between 90-200ns per call on kernels that do not have BTF technology.
49
50 ## Setup
51
52
53 ### Prerequisites
54
55 #### Compile kernel
56
57 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.
58 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
59 with different names.
60
61 Now follow steps:
62 1. Copy the configuration file to /usr/src/linux/.config.
63 2. Select the necessary options: make oldconfig
64 3. Compile your kernel image: make bzImage
65 4. Compile your modules: make modules
66 5. Copy your new kernel image for boot loader directory
67 6. Install the new modules: make modules_install
68 7. Generate an initial ramdisk image (`initrd`) if it is necessary.
69 8. Update your boot loader
70
71
72
73 ### Configuration
74
75 #### Options
76
77 All options are defined inside section `[global]`.
78
79
80 <details open><summary>Config options</summary>
81
82
83
84 | Option | Description | Default | Required |
85 |:-----|:------------|:--------|:---------:|
86 | update every | Data collection frequency. | 10 | no |
87 | ebpf load mode | Define whether plugin will monitor the call (`entry`) for the functions or it will also monitor the return (`return`). | entry | no |
88 | lifetime | Set default lifetime for thread when enabled by cloud. | 300 | no |
89
90
91 </details>
92
93
94
95 #### via File
96
97 The configuration file name for this integration is `ebpf.d/mdflush.conf`.
98
99 The file format is a modified INI syntax. The general structure is:
100
101 ```ini
102 [section1]
103 option1 = some value
104 option2 = some other value
105
106 [section2]
107 option3 = some third value
108 ```
109 You can edit the configuration file using the [`edit-config`](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration/README.md#edit-configuration-files) script from the
110 Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration/README.md#locate-your-config-directory).
111
112 ```bash
113 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
114 sudo ./edit-config ebpf.d/mdflush.conf
115 ```
116
117 ##### Examples
118 There are no configuration examples.
119
120
121
122 ## Alerts
123
124 There are no alerts configured by default for this integration.
125
126
127 ## Metrics
128
129 Metrics grouped by *scope*.
130
131 The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.
132
133
134
135 ### Per eBPF MDflush instance
136
137 Number of times md_flush_request was called since last time.
138
139 This scope has no labels.
140
141 Metrics:
142
143 | Metric | Dimensions | Unit |
144 |:------|:----------|:----|
145 | mdstat.mdstat_flush | disk | flushes |
146
147