2 * collectd - src/numa.c
3 * Copyright (C) 2012 Florian Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Florian Forster <octo at collectd.org>
33 #error "No applicable input method."
37 #define NUMA_ROOT_DIR "/sys/devices/system/node"
40 static int max_node = -1;
42 static void numa_dispatch_value(int node, /* {{{ */
43 const char *type_instance, value_t v) {
44 value_list_t vl = VALUE_LIST_INIT;
49 sstrncpy(vl.plugin, "numa", sizeof(vl.plugin));
50 snprintf(vl.plugin_instance, sizeof(vl.plugin_instance), "node%i", node);
51 sstrncpy(vl.type, "vmpage_action", sizeof(vl.type));
52 sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
54 plugin_dispatch_values(&vl);
55 } /* }}} void numa_dispatch_value */
57 static int numa_read_node(int node) /* {{{ */
65 snprintf(path, sizeof(path), NUMA_ROOT_DIR "/node%i/numastat", node);
67 fh = fopen(path, "r");
69 ERROR("numa plugin: Reading node %i failed: open(%s): %s", node, path,
75 while (fgets(buffer, sizeof(buffer), fh) != NULL) {
79 status = strsplit(buffer, fields, STATIC_ARRAY_SIZE(fields));
81 WARNING("numa plugin: Ignoring line with unexpected "
82 "number of fields (node %i).",
88 status = parse_value(fields[1], &v, DS_TYPE_DERIVE);
92 numa_dispatch_value(node, fields[0], v);
97 return success ? 0 : -1;
98 } /* }}} int numa_read_node */
100 static int numa_read(void) /* {{{ */
107 WARNING("numa plugin: No NUMA nodes were detected.");
112 for (i = 0; i <= max_node; i++) {
113 status = numa_read_node(i);
118 return success ? 0 : -1;
119 } /* }}} int numa_read */
121 static int numa_init(void) /* {{{ */
123 /* Determine the number of nodes on this machine. */
126 struct stat statbuf = {0};
129 snprintf(path, sizeof(path), NUMA_ROOT_DIR "/node%i", max_node + 1);
131 status = stat(path, &statbuf);
135 } else if (errno == ENOENT) {
137 } else /* ((status != 0) && (errno != ENOENT)) */
139 ERROR("numa plugin: stat(%s) failed: %s", path, STRERRNO);
144 DEBUG("numa plugin: Found %i nodes.", max_node + 1);
146 } /* }}} int numa_init */
148 void module_register(void) {
149 plugin_register_init("numa", numa_init);
150 plugin_register_read("numa", numa_read);
151 } /* void module_register */