2 * collectd - src/hugepages.c
5 * Copyright(c) 2016 Intel Corporation. All rights reserved.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * Jaroslav Safka <jaroslavx.safka@intel.com>
27 * Kim-Marie Jones <kim-marie.jones@intel.com>
28 * Florian Forster <octo at collectd.org>
33 #include "common.h" /* auxiliary functions */
34 #include "plugin.h" /* plugin_register_*, plugin_dispatch_values */
36 static const char g_plugin_name[] = "hugepages";
38 static _Bool g_flag_rpt_numa = 1;
39 static _Bool g_flag_rpt_mm = 1;
41 static _Bool g_values_pages = 1;
42 static _Bool g_values_bytes = 0;
43 static _Bool g_values_percent = 0;
45 #define HP_HAVE_NR 0x01
46 #define HP_HAVE_SURPLUS 0x02
47 #define HP_HAVE_FREE 0x04
48 #define HP_HAVE_ALL 0x07
61 static int hp_config(oconfig_item_t *ci) {
62 for (int i = 0; i < ci->children_num; i++) {
63 oconfig_item_t *child = ci->children + i;
64 if (strcasecmp("ReportPerNodeHP", child->key) == 0)
65 cf_util_get_boolean(child, &g_flag_rpt_numa);
66 else if (strcasecmp("ReportRootHP", child->key) == 0)
67 cf_util_get_boolean(child, &g_flag_rpt_mm);
68 else if (strcasecmp("ValuesPages", child->key) == 0)
69 cf_util_get_boolean(child, &g_values_pages);
70 else if (strcasecmp("ValuesBytes", child->key) == 0)
71 cf_util_get_boolean(child, &g_values_bytes);
72 else if (strcasecmp("ValuesPercentage", child->key) == 0)
73 cf_util_get_boolean(child, &g_values_percent);
75 ERROR("%s: Invalid configuration option: \"%s\".", g_plugin_name,
82 static void submit_hp(const struct entry_info *info) {
83 value_list_t vl = VALUE_LIST_INIT;
85 vl.values = &(value_t){.gauge = NAN};
88 sstrncpy(vl.plugin, g_plugin_name, sizeof(vl.plugin));
90 snprintf(vl.plugin_instance, sizeof(vl.plugin_instance), "%s-%zuKb",
91 info->node, info->page_size_kb);
93 snprintf(vl.plugin_instance, sizeof(vl.plugin_instance), "%zuKb",
97 /* ensure all metrics have the same timestamp */
100 gauge_t free = info->free;
101 gauge_t used = (info->nr + info->surplus) - info->free;
103 if (g_values_pages) {
104 sstrncpy(vl.type, "vmpage_number", sizeof(vl.type));
105 plugin_dispatch_multivalue(&vl, /* store_percentage = */ 0, DS_TYPE_GAUGE,
106 "free", free, "used", used, NULL);
108 if (g_values_bytes) {
109 gauge_t page_size = (gauge_t)(1024 * info->page_size_kb);
110 sstrncpy(vl.type, "memory", sizeof(vl.type));
111 plugin_dispatch_multivalue(&vl, /* store_percentage = */ 0, DS_TYPE_GAUGE,
112 "free", free * page_size, "used",
113 used * page_size, NULL);
115 if (g_values_percent) {
116 sstrncpy(vl.type, "percent", sizeof(vl.type));
117 plugin_dispatch_multivalue(&vl, /* store_percentage = */ 1, DS_TYPE_GAUGE,
118 "free", free, "used", used, NULL);
122 static int read_hugepage_entry(const char *path, const char *entry,
124 char path2[PATH_MAX];
125 struct entry_info *info = e_info;
128 snprintf(path2, sizeof(path2), "%s/%s", path, entry);
130 FILE *fh = fopen(path2, "rt");
132 ERROR("%s: cannot open %s", g_plugin_name, path2);
136 if (fscanf(fh, "%lf", &value) != 1) {
137 ERROR("%s: cannot parse file %s", g_plugin_name, path2);
143 if (strcmp(entry, "nr_hugepages") == 0) {
145 info->flags |= HP_HAVE_NR;
146 } else if (strcmp(entry, "surplus_hugepages") == 0) {
147 info->surplus = value;
148 info->flags |= HP_HAVE_SURPLUS;
149 } else if (strcmp(entry, "free_hugepages") == 0) {
151 info->flags |= HP_HAVE_FREE;
154 if (info->flags != HP_HAVE_ALL) {
160 /* Reset flags so subsequent calls don't submit again. */
165 static int read_syshugepages(const char *path, const char *node) {
166 static const char hugepages_dir[] = "hugepages-";
168 struct dirent *result;
169 char path2[PATH_MAX];
173 ERROR("%s: cannot open directory %s", g_plugin_name, path);
177 /* read "hugepages-XXXXXkB" entries */
178 while ((result = readdir(dir)) != NULL) {
179 if (strncmp(result->d_name, hugepages_dir, sizeof(hugepages_dir) - 1)) {
185 long page_size = strtol(result->d_name + strlen(hugepages_dir),
186 /* endptr = */ NULL, /* base = */ 10);
189 ERROR("%s: failed to determine page size from directory name \"%s\": %s",
190 g_plugin_name, result->d_name,
191 sstrerror(errno, errbuf, sizeof(errbuf)));
195 /* /sys/devices/system/node/node?/hugepages/ */
196 snprintf(path2, sizeof(path2), "%s/%s", path, result->d_name);
198 walk_directory(path2, read_hugepage_entry,
199 &(struct entry_info){
200 .d_name = result->d_name,
202 .page_size_kb = (size_t)page_size,
208 /* Check if NULL return from readdir() was an error */
210 ERROR("%s: readdir failed", g_plugin_name);
219 static int read_nodes(void) {
220 static const char sys_node[] = "/sys/devices/system/node";
221 static const char node_string[] = "node";
222 static const char sys_node_hugepages[] =
223 "/sys/devices/system/node/%s/hugepages";
225 struct dirent *result;
228 dir = opendir(sys_node);
230 ERROR("%s: cannot open directory %s", g_plugin_name, sys_node);
234 while ((result = readdir(dir)) != NULL) {
235 if (strncmp(result->d_name, node_string, sizeof(node_string) - 1)) {
241 snprintf(path, sizeof(path), sys_node_hugepages, result->d_name);
242 read_syshugepages(path, result->d_name);
246 /* Check if NULL return from readdir() was an error */
248 ERROR("%s: readdir failed", g_plugin_name);
257 static int huge_read(void) {
258 static const char sys_mm_hugepages[] = "/sys/kernel/mm/hugepages";
261 if (read_syshugepages(sys_mm_hugepages, "mm") != 0) {
265 if (g_flag_rpt_numa) {
266 if (read_nodes() != 0) {
274 void module_register(void) {
275 plugin_register_complex_config(g_plugin_name, hp_config);
276 plugin_register_read(g_plugin_name, huge_read);