2 * collectd - src/vserver.c
3 * Copyright (C) 2006,2007 Sebastian Harl
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 * Sebastian Harl <sh at tokkee.org>
27 #include <sys/types.h>
31 #define PROCDIR "/proc/virtual"
34 # error "No applicable input method."
37 static int pagesize = 0;
39 static int vserver_init (void)
41 /* XXX Should we check for getpagesize () in configure?
42 * What's the right thing to do, if there is no getpagesize ()? */
43 pagesize = getpagesize ();
46 } /* static void vserver_init(void) */
48 static void traffic_submit (const char *plugin_instance,
49 const char *type_instance, counter_t rx, counter_t tx)
52 value_list_t vl = VALUE_LIST_INIT;
54 values[0].counter = rx;
55 values[1].counter = tx;
58 vl.values_len = STATIC_ARRAY_SIZE (values);
59 vl.time = time (NULL);
60 strcpy (vl.host, hostname_g);
61 strcpy (vl.plugin, "vserver");
62 strncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
63 strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
65 plugin_dispatch_values ("if_octets", &vl);
66 } /* void traffic_submit */
68 static void load_submit (const char *plugin_instance,
69 gauge_t snum, gauge_t mnum, gauge_t lnum)
72 value_list_t vl = VALUE_LIST_INIT;
74 values[0].gauge = snum;
75 values[1].gauge = mnum;
76 values[2].gauge = lnum;
79 vl.values_len = STATIC_ARRAY_SIZE (values);
80 vl.time = time (NULL);
81 strcpy (vl.host, hostname_g);
82 strcpy (vl.plugin, "vserver");
83 strncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
85 plugin_dispatch_values ("load", &vl);
88 static void submit_gauge (const char *plugin_instance, const char *type,
89 const char *type_instance, gauge_t value)
93 value_list_t vl = VALUE_LIST_INIT;
95 values[0].gauge = value;
98 vl.values_len = STATIC_ARRAY_SIZE (values);
99 vl.time = time (NULL);
100 strcpy (vl.host, hostname_g);
101 strcpy (vl.plugin, "vserver");
102 strncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
103 strncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
105 plugin_dispatch_values (type, &vl);
106 } /* void submit_gauge */
108 static inline long long __get_sock_bytes(const char *s)
118 static int vserver_read (void)
121 struct dirent *dent; /* 42 */
124 if (NULL == (proc = opendir (PROCDIR)))
127 ERROR ("vserver plugin: fopen (%s): %s", PROCDIR,
128 sstrerror (errno, errbuf, sizeof (errbuf)));
132 while (NULL != (dent = readdir (proc)))
138 char buffer[BUFSIZE];
142 if (dent->d_name[0] == '.')
145 /* This is not a directory */
146 if (dent->d_type != DT_DIR)
149 /* socket message accounting */
150 len = snprintf (file, BUFSIZE, PROCDIR "/%s/cacct", dent->d_name);
151 if ((len < 0) || (len >= BUFSIZE))
154 if (NULL == (fh = fopen (file, "r")))
157 ERROR ("Cannot open '%s': %s", file,
158 sstrerror (errno, errbuf, sizeof (errbuf)));
161 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
167 if (strsplit (buffer, cols, 4) < 4)
170 if (0 == strcmp (cols[0], "UNIX:"))
171 type_instance = "unix";
172 else if (0 == strcmp (cols[0], "INET:"))
173 type_instance = "inet";
174 else if (0 == strcmp (cols[0], "INET6:"))
175 type_instance = "inet6";
176 else if (0 == strcmp (cols[0], "OTHER:"))
177 type_instance = "other";
178 else if (0 == strcmp (cols[0], "UNSPEC:"))
179 type_instance = "unspec";
183 rx = __get_sock_bytes (cols[1]);
184 tx = __get_sock_bytes (cols[2]);
185 /* cols[3] == errors */
187 traffic_submit (dent->d_name, type_instance, rx, tx);
188 } /* while (fgets) */
196 /* thread information and load */
197 len = snprintf (file, BUFSIZE, PROCDIR "/%s/cvirt", dent->d_name);
198 if ((len < 0) || (len >= BUFSIZE))
201 if (NULL == (fh = fopen (file, "r")))
204 ERROR ("Cannot open '%s': %s", file,
205 sstrerror (errno, errbuf, sizeof (errbuf)));
208 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
210 int n = strsplit (buffer, cols, 4);
217 if (0 == strcmp (cols[0], "nr_threads:"))
218 type_instance = "total";
219 else if (0 == strcmp (cols[0], "nr_running:"))
220 type_instance = "running";
221 else if (0 == strcmp (cols[0], "nr_unintr:"))
222 type_instance = "uninterruptable";
223 else if (0 == strcmp (cols[0], "nr_onhold:"))
224 type_instance = "onhold";
228 value = atof (cols[1]);
229 submit_gauge (dent->d_name, "vs_threads", type_instance, value);
232 if (0 == strcmp (cols[0], "loadavg:"))
234 gauge_t snum = atof (cols[1]);
235 gauge_t mnum = atof (cols[2]);
236 gauge_t lnum = atof (cols[3]);
237 load_submit (dent->d_name, snum, mnum, lnum);
240 } /* while (fgets) */
248 /* processes and memory usage */
249 len = snprintf (file, BUFSIZE, PROCDIR "/%s/limit", dent->d_name);
250 if ((len < 0) || (len >= BUFSIZE))
253 if (NULL == (fh = fopen (file, "r")))
256 ERROR ("Cannot open '%s': %s", file,
257 sstrerror (errno, errbuf, sizeof (errbuf)));
260 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
262 char *type = "vs_memory";
266 if (strsplit (buffer, cols, 2) < 2)
269 if (0 == strcmp (cols[0], "PROC:"))
271 type = "vs_processes";
273 value = atof (cols[1]);
277 if (0 == strcmp (cols[0], "VM:"))
278 type_instance = "vm";
279 else if (0 == strcmp (cols[0], "VML:"))
280 type_instance = "vml";
281 else if (0 == strcmp (cols[0], "RSS:"))
282 type_instance = "rss";
283 else if (0 == strcmp (cols[0], "ANON:"))
284 type_instance = "anon";
288 value = atof (cols[1]) * pagesize;
291 submit_gauge (dent->d_name, type, type_instance, value);
292 } /* while (fgets) */
299 } /* while (readdir) */
304 } /* int vserver_read */
306 void module_register (void)
308 plugin_register_init ("vserver", vserver_init);
309 plugin_register_read ("vserver", vserver_read);
310 } /* void module_register(void) */
312 /* vim: set ts=4 sw=4 noexpandtab : */