Added "type" to the value_list_t struct.
[collectd.git] / src / cpu.c
1 /**
2  * collectd - src/cpu.c
3  * Copyright (C) 2005-2007  Florian octo Forster
4  *
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.
8  *
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.
13  *
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
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #include "collectd.h"
23 #include "common.h"
24 #include "plugin.h"
25
26 #ifdef HAVE_MACH_KERN_RETURN_H
27 # include <mach/kern_return.h>
28 #endif
29 #ifdef HAVE_MACH_MACH_INIT_H
30 # include <mach/mach_init.h>
31 #endif
32 #ifdef HAVE_MACH_HOST_PRIV_H
33 # include <mach/host_priv.h>
34 #endif
35 #if HAVE_MACH_MACH_ERROR_H
36 #  include <mach/mach_error.h>
37 #endif
38 #ifdef HAVE_MACH_PROCESSOR_INFO_H
39 # include <mach/processor_info.h>
40 #endif
41 #ifdef HAVE_MACH_PROCESSOR_H
42 # include <mach/processor.h>
43 #endif
44 #ifdef HAVE_MACH_VM_MAP_H
45 # include <mach/vm_map.h>
46 #endif
47
48 #ifdef HAVE_LIBKSTAT
49 # include <sys/sysinfo.h>
50 #endif /* HAVE_LIBKSTAT */
51
52 #ifdef HAVE_SYSCTLBYNAME
53 # ifdef HAVE_SYS_SYSCTL_H
54 #  include <sys/sysctl.h>
55 # endif
56
57 # ifdef HAVE_SYS_DKSTAT_H
58 #  include <sys/dkstat.h>
59 # endif
60
61 # if !defined(CP_USER) || !defined(CP_NICE) || !defined(CP_SYS) || !defined(CP_INTR) || !defined(CP_IDLE) || !defined(CPUSTATES)
62 #  define CP_USER   0
63 #  define CP_NICE   1
64 #  define CP_SYS    2
65 #  define CP_INTR   3
66 #  define CP_IDLE   4
67 #  define CPUSTATES 5
68 # endif
69 #endif /* HAVE_SYSCTLBYNAME */
70
71 #if !PROCESSOR_CPU_LOAD_INFO && !KERNEL_LINUX && !HAVE_LIBKSTAT && !HAVE_SYSCTLBYNAME
72 # error "No applicable input method."
73 #endif
74
75 #ifdef PROCESSOR_CPU_LOAD_INFO
76 static mach_port_t port_host;
77 static processor_port_array_t cpu_list;
78 static mach_msg_type_number_t cpu_list_len;
79
80 #if PROCESSOR_TEMPERATURE
81 static int cpu_temp_retry_counter = 0;
82 static int cpu_temp_retry_step    = 1;
83 static int cpu_temp_retry_max     = 1;
84 #endif /* PROCESSOR_TEMPERATURE */
85 /* #endif PROCESSOR_CPU_LOAD_INFO */
86
87 #elif defined(KERNEL_LINUX)
88 /* no variables needed */
89 /* #endif KERNEL_LINUX */
90
91 #elif defined(HAVE_LIBKSTAT)
92 /* colleague tells me that Sun doesn't sell systems with more than 100 or so CPUs.. */
93 # define MAX_NUMCPU 256
94 extern kstat_ctl_t *kc;
95 static kstat_t *ksp[MAX_NUMCPU];
96 static int numcpu;
97 /* #endif HAVE_LIBKSTAT */
98
99 #elif defined(HAVE_SYSCTLBYNAME)
100 static int numcpu;
101 #endif /* HAVE_SYSCTLBYNAME */
102
103 static int init (void)
104 {
105 #if PROCESSOR_CPU_LOAD_INFO || PROCESSOR_TEMPERATURE
106         kern_return_t status;
107
108         port_host = mach_host_self ();
109
110         /* FIXME: Free `cpu_list' if it's not NULL */
111         if ((status = host_processors (port_host, &cpu_list, &cpu_list_len)) != KERN_SUCCESS)
112         {
113                 ERROR ("cpu plugin: host_processors returned %i", (int) status);
114                 cpu_list_len = 0;
115                 return (-1);
116         }
117
118         DEBUG ("host_processors returned %i %s", (int) cpu_list_len, cpu_list_len == 1 ? "processor" : "processors");
119         INFO ("cpu plugin: Found %i processor%s.", (int) cpu_list_len, cpu_list_len == 1 ? "" : "s");
120
121         cpu_temp_retry_max = 86400 / interval_g;
122 /* #endif PROCESSOR_CPU_LOAD_INFO */
123
124 #elif defined(HAVE_LIBKSTAT)
125         kstat_t *ksp_chain;
126
127         numcpu = 0;
128
129         if (kc == NULL)
130                 return (-1);
131
132         /* Solaris doesn't count linear.. *sigh* */
133         for (numcpu = 0, ksp_chain = kc->kc_chain;
134                         (numcpu < MAX_NUMCPU) && (ksp_chain != NULL);
135                         ksp_chain = ksp_chain->ks_next)
136                 if (strncmp (ksp_chain->ks_module, "cpu_stat", 8) == 0)
137                         ksp[numcpu++] = ksp_chain;
138 /* #endif HAVE_LIBKSTAT */
139
140 #elif defined (HAVE_SYSCTLBYNAME)
141         size_t numcpu_size;
142
143         numcpu_size = sizeof (numcpu);
144
145         if (sysctlbyname ("hw.ncpu", &numcpu, &numcpu_size, NULL, 0) < 0)
146         {
147                 char errbuf[1024];
148                 WARNING ("cpu plugin: sysctlbyname: %s",
149                                 sstrerror (errno, errbuf, sizeof (errbuf)));
150                 return (-1);
151         }
152
153         if (numcpu != 1)
154                 NOTICE ("cpu: Only one processor supported when using `sysctlbyname' (found %i)", numcpu);
155 #endif
156
157         return (0);
158 } /* int init */
159
160 static void submit (int cpu_num, const char *type_instance, counter_t value)
161 {
162         value_t values[1];
163         value_list_t vl = VALUE_LIST_INIT;
164
165         values[0].counter = value;
166
167         vl.values = values;
168         vl.values_len = 1;
169         vl.time = time (NULL);
170         strcpy (vl.host, hostname_g);
171         strcpy (vl.plugin, "cpu");
172         snprintf (vl.plugin_instance, sizeof (vl.type_instance),
173                         "%i", cpu_num);
174         vl.plugin_instance[DATA_MAX_NAME_LEN - 1] = '\0';
175         strcpy (vl.type, "cpu");
176         strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
177
178         plugin_dispatch_values (&vl);
179 }
180
181 static int cpu_read (void)
182 {
183 #if PROCESSOR_CPU_LOAD_INFO || PROCESSOR_TEMPERATURE
184         int cpu;
185
186         kern_return_t status;
187         
188 #if PROCESSOR_CPU_LOAD_INFO
189         processor_cpu_load_info_data_t cpu_info;
190         mach_msg_type_number_t         cpu_info_len;
191 #endif
192 #if PROCESSOR_TEMPERATURE
193         processor_info_data_t          cpu_temp;
194         mach_msg_type_number_t         cpu_temp_len;
195 #endif
196
197         host_t cpu_host;
198
199         for (cpu = 0; cpu < cpu_list_len; cpu++)
200         {
201 #if PROCESSOR_CPU_LOAD_INFO
202                 cpu_host = 0;
203                 cpu_info_len = PROCESSOR_BASIC_INFO_COUNT;
204
205                 if ((status = processor_info (cpu_list[cpu],
206                                                 PROCESSOR_CPU_LOAD_INFO, &cpu_host,
207                                                 (processor_info_t) &cpu_info, &cpu_info_len)) != KERN_SUCCESS)
208                 {
209                         ERROR ("cpu plugin: processor_info failed with status %i", (int) status);
210                         continue;
211                 }
212
213                 if (cpu_info_len < CPU_STATE_MAX)
214                 {
215                         ERROR ("cpu plugin: processor_info returned only %i elements..", cpu_info_len);
216                         continue;
217                 }
218
219                 submit (cpu, "user", (counter_t) cpu_info.cpu_ticks[CPU_STATE_USER]);
220                 submit (cpu, "nice", (counter_t) cpu_info.cpu_ticks[CPU_STATE_NICE]);
221                 submit (cpu, "system", (counter_t) cpu_info.cpu_ticks[CPU_STATE_SYSTEM]);
222                 submit (cpu, "idle", (counter_t) cpu_info.cpu_ticks[CPU_STATE_IDLE]);
223 #endif /* PROCESSOR_CPU_LOAD_INFO */
224 #if PROCESSOR_TEMPERATURE
225                 /*
226                  * Not all Apple computers do have this ability. To minimize
227                  * the messages sent to the syslog we do an exponential
228                  * stepback if `processor_info' fails. We still try ~once a day
229                  * though..
230                  */
231                 if (cpu_temp_retry_counter > 0)
232                 {
233                         cpu_temp_retry_counter--;
234                         continue;
235                 }
236
237                 cpu_temp_len = PROCESSOR_INFO_MAX;
238
239                 status = processor_info (cpu_list[cpu],
240                                 PROCESSOR_TEMPERATURE,
241                                 &cpu_host,
242                                 cpu_temp, &cpu_temp_len);
243                 if (status != KERN_SUCCESS)
244                 {
245                         ERROR ("cpu plugin: processor_info failed: %s",
246                                         mach_error_string (status));
247
248                         cpu_temp_retry_counter = cpu_temp_retry_step;
249                         cpu_temp_retry_step *= 2;
250                         if (cpu_temp_retry_step > cpu_temp_retry_max)
251                                 cpu_temp_retry_step = cpu_temp_retry_max;
252
253                         continue;
254                 }
255
256                 if (cpu_temp_len != 1)
257                 {
258                         DEBUG ("processor_info (PROCESSOR_TEMPERATURE) returned %i elements..?",
259                                         (int) cpu_temp_len);
260                         continue;
261                 }
262
263                 cpu_temp_retry_counter = 0;
264                 cpu_temp_retry_step    = 1;
265
266                 DEBUG ("cpu_temp = %i", (int) cpu_temp);
267 #endif /* PROCESSOR_TEMPERATURE */
268         }
269 /* #endif PROCESSOR_CPU_LOAD_INFO */
270
271 #elif defined(KERNEL_LINUX)
272         int cpu;
273         counter_t user, nice, syst, idle;
274         counter_t wait, intr, sitr; /* sitr == soft interrupt */
275         FILE *fh;
276         char buf[1024];
277
278         char *fields[9];
279         int numfields;
280
281         if ((fh = fopen ("/proc/stat", "r")) == NULL)
282         {
283                 char errbuf[1024];
284                 ERROR ("cpu plugin: fopen (/proc/stat) failed: %s",
285                                 sstrerror (errno, errbuf, sizeof (errbuf)));
286                 return (-1);
287         }
288
289         while (fgets (buf, 1024, fh) != NULL)
290         {
291                 if (strncmp (buf, "cpu", 3))
292                         continue;
293                 if ((buf[3] < '0') || (buf[3] > '9'))
294                         continue;
295
296                 numfields = strsplit (buf, fields, 9);
297                 if (numfields < 5)
298                         continue;
299
300                 cpu = atoi (fields[0] + 3);
301                 user = atoll (fields[1]);
302                 nice = atoll (fields[2]);
303                 syst = atoll (fields[3]);
304                 idle = atoll (fields[4]);
305
306                 submit (cpu, "user", user);
307                 submit (cpu, "nice", nice);
308                 submit (cpu, "system", syst);
309                 submit (cpu, "idle", idle);
310
311                 if (numfields >= 8)
312                 {
313                         wait = atoll (fields[5]);
314                         intr = atoll (fields[6]);
315                         sitr = atoll (fields[7]);
316
317                         submit (cpu, "wait", wait);
318                         submit (cpu, "interrupt", intr);
319                         submit (cpu, "softirq", sitr);
320
321                         if (numfields >= 9)
322                                 submit (cpu, "steal", atoll (fields[8]));
323                 }
324         }
325
326         fclose (fh);
327 /* #endif defined(KERNEL_LINUX) */
328
329 #elif defined(HAVE_LIBKSTAT)
330         int cpu;
331         counter_t user, syst, idle, wait;
332         static cpu_stat_t cs;
333
334         if (kc == NULL)
335                 return (-1);
336
337         for (cpu = 0; cpu < numcpu; cpu++)
338         {
339                 if (kstat_read (kc, ksp[cpu], &cs) == -1)
340                         continue; /* error message? */
341
342                 idle = (counter_t) cs.cpu_sysinfo.cpu[CPU_IDLE];
343                 user = (counter_t) cs.cpu_sysinfo.cpu[CPU_USER];
344                 syst = (counter_t) cs.cpu_sysinfo.cpu[CPU_KERNEL];
345                 wait = (counter_t) cs.cpu_sysinfo.cpu[CPU_WAIT];
346
347                 submit (ksp[cpu]->ks_instance, "user", user);
348                 submit (ksp[cpu]->ks_instance, "system", syst);
349                 submit (ksp[cpu]->ks_instance, "idle", idle);
350                 submit (ksp[cpu]->ks_instance, "wait", wait);
351         }
352 /* #endif defined(HAVE_LIBKSTAT) */
353
354 #elif defined(HAVE_SYSCTLBYNAME)
355         long cpuinfo[CPUSTATES];
356         size_t cpuinfo_size;
357
358         cpuinfo_size = sizeof (cpuinfo);
359
360         if (sysctlbyname("kern.cp_time", &cpuinfo, &cpuinfo_size, NULL, 0) < 0)
361         {
362                 char errbuf[1024];
363                 ERROR ("cpu plugin: sysctlbyname failed: %s.",
364                                 sstrerror (errno, errbuf, sizeof (errbuf)));
365                 return (-1);
366         }
367
368         cpuinfo[CP_SYS] += cpuinfo[CP_INTR];
369
370         submit (0, "user", cpuinfo[CP_USER]);
371         submit (0, "nice", cpuinfo[CP_NICE]);
372         submit (0, "system", cpuinfo[CP_SYS]);
373         submit (0, "idle", cpuinfo[CP_IDLE]);
374 #endif
375
376         return (0);
377 }
378
379 void module_register (void)
380 {
381         plugin_register_init ("cpu", init);
382         plugin_register_read ("cpu", cpu_read);
383 } /* void module_register */