1adc62182fc47428b73b148c21e4219fa23c19f7
[collectd.git] / src / load.c
1 /**
2  * collectd - src/load.c
3  * Copyright (C) 2005-2008  Florian octo Forster
4  * Copyright (C) 2009       Manuel Sanmartin
5  * Copyright (C) 2013       Vedran Bartonicek
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the
9  * Free Software Foundation; only version 2 of the License is applicable.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  *
20  * Authors:
21  *   Florian octo Forster <octo at collectd.org>
22  *   Manuel Sanmartin
23  *   Vedran Bartonicek <vbartoni at gmail.com>
24  **/
25
26 #define _DEFAULT_SOURCE
27 #define _BSD_SOURCE
28
29 #include "collectd.h"
30
31 #include "plugin.h"
32 #include "utils/common/common.h"
33
34 #include <unistd.h>
35
36 #ifdef HAVE_SYS_LOADAVG_H
37 #include <sys/loadavg.h>
38 #endif
39
40 #if HAVE_STATGRAB_H
41 #include <statgrab.h>
42 #endif
43
44 #ifdef HAVE_GETLOADAVG
45 #if !defined(LOADAVG_1MIN) || !defined(LOADAVG_5MIN) || !defined(LOADAVG_15MIN)
46 #define LOADAVG_1MIN 0
47 #define LOADAVG_5MIN 1
48 #define LOADAVG_15MIN 2
49 #endif
50 #endif /* defined(HAVE_GETLOADAVG) */
51
52 #ifdef HAVE_PERFSTAT
53 #include <libperfstat.h>
54 #include <sys/proc.h> /* AIX 5 */
55 #include <sys/protosw.h>
56 #endif /* HAVE_PERFSTAT */
57
58 static bool report_relative_load;
59
60 static const char *config_keys[] = {"ReportRelative"};
61 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
62
63 static int load_config(const char *key, const char *value) {
64   if (strcasecmp(key, "ReportRelative") == 0) {
65 #ifdef _SC_NPROCESSORS_ONLN
66     report_relative_load = IS_TRUE(value);
67 #else
68     WARNING("load plugin: The \"ReportRelative\" configuration "
69             "is not available, because I can't determine the "
70             "number of CPUS on this system. Sorry.");
71 #endif
72     return 0;
73   }
74   return -1;
75 }
76 static void load_submit(gauge_t snum, gauge_t mnum, gauge_t lnum) {
77   int cores = 0;
78
79 #ifdef _SC_NPROCESSORS_ONLN
80   if (report_relative_load) {
81     if ((cores = sysconf(_SC_NPROCESSORS_ONLN)) < 1) {
82       WARNING("load: sysconf failed : %s", STRERRNO);
83     }
84   }
85 #endif
86   if (cores > 0) {
87     snum /= cores;
88     mnum /= cores;
89     lnum /= cores;
90   }
91
92   value_list_t vl = VALUE_LIST_INIT;
93   value_t values[] = {
94       {.gauge = snum}, {.gauge = mnum}, {.gauge = lnum},
95   };
96
97   vl.values = values;
98   vl.values_len = STATIC_ARRAY_SIZE(values);
99
100   sstrncpy(vl.plugin, "load", sizeof(vl.plugin));
101   sstrncpy(vl.type, "load", sizeof(vl.type));
102
103   if (cores > 0) {
104     sstrncpy(vl.type_instance, "relative", sizeof(vl.type_instance));
105   }
106
107   plugin_dispatch_values(&vl);
108 }
109
110 static int load_read(void) {
111 #if defined(HAVE_GETLOADAVG)
112   double load[3];
113
114   if (getloadavg(load, 3) == 3)
115     load_submit(load[LOADAVG_1MIN], load[LOADAVG_5MIN], load[LOADAVG_15MIN]);
116   else {
117     WARNING("load: getloadavg failed: %s", STRERRNO);
118   }
119 /* #endif HAVE_GETLOADAVG */
120
121 #elif defined(KERNEL_LINUX)
122   gauge_t snum, mnum, lnum;
123   FILE *loadavg;
124   char buffer[16];
125
126   char *fields[8];
127   int numfields;
128
129   if ((loadavg = fopen("/proc/loadavg", "r")) == NULL) {
130     WARNING("load: fopen: %s", STRERRNO);
131     return -1;
132   }
133
134   if (fgets(buffer, 16, loadavg) == NULL) {
135     WARNING("load: fgets: %s", STRERRNO);
136     fclose(loadavg);
137     return -1;
138   }
139
140   if (fclose(loadavg)) {
141     WARNING("load: fclose: %s", STRERRNO);
142   }
143
144   numfields = strsplit(buffer, fields, 8);
145
146   if (numfields < 3)
147     return -1;
148
149   snum = atof(fields[0]);
150   mnum = atof(fields[1]);
151   lnum = atof(fields[2]);
152
153   load_submit(snum, mnum, lnum);
154 /* #endif KERNEL_LINUX */
155
156 #elif HAVE_LIBSTATGRAB
157   gauge_t snum, mnum, lnum;
158   sg_load_stats *ls;
159
160   if ((ls = sg_get_load_stats()) == NULL)
161     return;
162
163   snum = ls->min1;
164   mnum = ls->min5;
165   lnum = ls->min15;
166   load_submit(snum, mnum, lnum);
167 /* #endif HAVE_LIBSTATGRAB */
168
169 #elif HAVE_PERFSTAT
170   gauge_t snum, mnum, lnum;
171   perfstat_cpu_total_t cputotal;
172
173   if (perfstat_cpu_total(NULL, &cputotal, sizeof(perfstat_cpu_total_t), 1) <
174       0) {
175     WARNING("load: perfstat_cpu : %s", STRERRNO);
176     return -1;
177   }
178
179   snum = (float)cputotal.loadavg[0] / (float)(1 << SBITS);
180   mnum = (float)cputotal.loadavg[1] / (float)(1 << SBITS);
181   lnum = (float)cputotal.loadavg[2] / (float)(1 << SBITS);
182   load_submit(snum, mnum, lnum);
183 /* #endif HAVE_PERFSTAT */
184
185 #else
186 #error "No applicable input method."
187 #endif
188
189   return 0;
190 }
191
192 void module_register(void) {
193   plugin_register_config("load", load_config, config_keys, config_keys_num);
194   plugin_register_read("load", load_read);
195 } /* void module_register */