2 * collectd - src/xencpu.c
3 * Copyright (C) 2016 Pavel Rochnyak
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; only version 2 of the License is applicable.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Pavel Rochnyak <pavel2000 ngs.ru>
29 #ifdef XENCTRL_HAS_XC_INTERFACE
32 #define XC_INTERFACE_INIT_ARGS NULL, NULL, 0
33 xc_interface *xc_handle;
35 #else /* XENCTRL_HAS_XC_INTERFACE */
37 // For xen-3.4/xen-4.0
39 #define xc_strerror(xc_interface, errcode) strerror(errcode)
40 #define XC_INTERFACE_INIT_ARGS
41 typedef int xc_interface;
42 xc_interface xc_handle = 0;
44 #endif /* XENCTRL_HAS_XC_INTERFACE */
46 uint32_t num_cpus = 0;
47 xc_cpuinfo_t *cpu_info;
48 static value_to_rate_state_t *cpu_states;
50 static int xencpu_init(void) {
51 xc_handle = xc_interface_open(XC_INTERFACE_INIT_ARGS);
53 ERROR("xencpu: xc_interface_open() failed");
57 xc_physinfo_t *physinfo;
59 physinfo = calloc(1, sizeof(xc_physinfo_t));
60 if (physinfo == NULL) {
61 ERROR("xencpu plugin: calloc() for physinfo failed.");
62 xc_interface_close(xc_handle);
66 if (xc_physinfo(xc_handle, physinfo) < 0) {
67 ERROR("xencpu plugin: xc_physinfo() failed");
68 xc_interface_close(xc_handle);
73 num_cpus = physinfo->nr_cpus;
76 INFO("xencpu plugin: Found %" PRIu32 " processors.", num_cpus);
78 cpu_info = calloc(num_cpus, sizeof(xc_cpuinfo_t));
79 if (cpu_info == NULL) {
80 ERROR("xencpu plugin: calloc() for num_cpus failed.");
81 xc_interface_close(xc_handle);
85 cpu_states = calloc(num_cpus, sizeof(value_to_rate_state_t));
86 if (cpu_states == NULL) {
87 ERROR("xencpu plugin: calloc() for cpu_states failed.");
88 xc_interface_close(xc_handle);
94 } /* static int xencpu_init */
96 static int xencpu_shutdown(void) {
99 xc_interface_close(xc_handle);
102 } /* static int xencpu_shutdown */
104 static void submit_value(int cpu_num, gauge_t value) {
105 value_list_t vl = VALUE_LIST_INIT;
107 vl.values = &(value_t){.gauge = value};
110 sstrncpy(vl.plugin, "xencpu", sizeof(vl.plugin));
111 sstrncpy(vl.type, "percent", sizeof(vl.type));
112 sstrncpy(vl.type_instance, "load", sizeof(vl.type_instance));
115 snprintf(vl.plugin_instance, sizeof(vl.plugin_instance), "%i", cpu_num);
117 plugin_dispatch_values(&vl);
118 } /* static void submit_value */
120 static int xencpu_read(void) {
121 cdtime_t now = cdtime();
125 rc = xc_getcpuinfo(xc_handle, num_cpus, cpu_info, &nr_cpus);
127 ERROR("xencpu: xc_getcpuinfo() Failed: %d %s\n", rc,
128 xc_strerror(xc_handle, errno));
133 for (int cpu = 0; cpu < nr_cpus; cpu++) {
136 status = value_to_rate(&rate, (value_t){.derive = cpu_info[cpu].idletime},
137 DS_TYPE_DERIVE, now, &cpu_states[cpu]);
139 submit_value(cpu, 100 - rate / 10000000);
144 } /* static int xencpu_read */
146 void module_register(void) {
147 plugin_register_init("xencpu", xencpu_init);
148 plugin_register_read("xencpu", xencpu_read);
149 plugin_register_shutdown("xencpu", xencpu_shutdown);
150 } /* void module_register */