2 * collectd - src/vserver.c
3 * Copyright (C) 2006,2007 Sebastian Harl
4 * Copyright (C) 2007,2008 Florian octo Forster
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the license is applicable.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Sebastian Harl <sh at tokkee.org>
21 * Florian octo Forster <octo at verplant.org>
29 #include <sys/types.h>
33 #define PROCDIR "/proc/virtual"
36 # error "No applicable input method."
39 static int pagesize = 0;
41 static int vserver_init (void)
43 /* XXX Should we check for getpagesize () in configure?
44 * What's the right thing to do, if there is no getpagesize ()? */
45 pagesize = getpagesize ();
48 } /* static void vserver_init(void) */
50 static void traffic_submit (const char *plugin_instance,
51 const char *type_instance, counter_t rx, counter_t tx)
54 value_list_t vl = VALUE_LIST_INIT;
56 values[0].counter = rx;
57 values[1].counter = tx;
60 vl.values_len = STATIC_ARRAY_SIZE (values);
61 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
62 sstrncpy (vl.plugin, "vserver", sizeof (vl.plugin));
63 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
64 sstrncpy (vl.type, "if_octets", sizeof (vl.type));
65 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
67 plugin_dispatch_values (&vl);
68 } /* void traffic_submit */
70 static void load_submit (const char *plugin_instance,
71 gauge_t snum, gauge_t mnum, gauge_t lnum)
74 value_list_t vl = VALUE_LIST_INIT;
76 values[0].gauge = snum;
77 values[1].gauge = mnum;
78 values[2].gauge = lnum;
81 vl.values_len = STATIC_ARRAY_SIZE (values);
82 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
83 sstrncpy (vl.plugin, "vserver", sizeof (vl.plugin));
84 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
85 sstrncpy (vl.type, "load", sizeof (vl.type));
87 plugin_dispatch_values (&vl);
90 static void submit_gauge (const char *plugin_instance, const char *type,
91 const char *type_instance, gauge_t value)
95 value_list_t vl = VALUE_LIST_INIT;
97 values[0].gauge = value;
100 vl.values_len = STATIC_ARRAY_SIZE (values);
101 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
102 sstrncpy (vl.plugin, "vserver", sizeof (vl.plugin));
103 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
104 sstrncpy (vl.type, type, sizeof (vl.type));
105 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
107 plugin_dispatch_values (&vl);
108 } /* void submit_gauge */
110 static inline long long __get_sock_bytes(const char *s)
120 static int vserver_read (void)
123 # define DIRENT_BUFFER_SIZE (sizeof (struct dirent) + 1024 + 1)
125 # define DIRENT_BUFFER_SIZE (sizeof (struct dirent) + NAME_MAX + 1)
129 struct dirent *dent; /* 42 */
130 char dirent_buffer[DIRENT_BUFFER_SIZE];
133 proc = opendir (PROCDIR);
137 ERROR ("vserver plugin: fopen (%s): %s", PROCDIR,
138 sstrerror (errno, errbuf, sizeof (errbuf)));
148 char buffer[BUFSIZE];
155 status = readdir_r (proc, (struct dirent *) dirent_buffer, &dent);
159 ERROR ("vserver plugin: readdir_r failed: %s",
160 sstrerror (errno, errbuf, sizeof (errbuf)));
164 else if (dent == NULL)
166 /* end of directory */
170 if (dent->d_name[0] == '.')
173 len = ssnprintf (file, sizeof (file), PROCDIR "/%s", dent->d_name);
174 if ((len < 0) || (len >= BUFSIZE))
177 status = stat (file, &statbuf);
181 WARNING ("vserver plugin: stat (%s) failed: %s",
182 file, sstrerror (errno, errbuf, sizeof (errbuf)));
186 if (!S_ISDIR (statbuf.st_mode))
189 /* socket message accounting */
190 len = ssnprintf (file, sizeof (file),
191 PROCDIR "/%s/cacct", dent->d_name);
192 if ((len < 0) || ((size_t) len >= sizeof (file)))
195 if (NULL == (fh = fopen (file, "r")))
198 ERROR ("Cannot open '%s': %s", file,
199 sstrerror (errno, errbuf, sizeof (errbuf)));
202 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
208 if (strsplit (buffer, cols, 4) < 4)
211 if (0 == strcmp (cols[0], "UNIX:"))
212 type_instance = "unix";
213 else if (0 == strcmp (cols[0], "INET:"))
214 type_instance = "inet";
215 else if (0 == strcmp (cols[0], "INET6:"))
216 type_instance = "inet6";
217 else if (0 == strcmp (cols[0], "OTHER:"))
218 type_instance = "other";
219 else if (0 == strcmp (cols[0], "UNSPEC:"))
220 type_instance = "unspec";
224 rx = __get_sock_bytes (cols[1]);
225 tx = __get_sock_bytes (cols[2]);
226 /* cols[3] == errors */
228 traffic_submit (dent->d_name, type_instance, rx, tx);
229 } /* while (fgets) */
237 /* thread information and load */
238 len = ssnprintf (file, sizeof (file),
239 PROCDIR "/%s/cvirt", dent->d_name);
240 if ((len < 0) || ((size_t) len >= sizeof (file)))
243 if (NULL == (fh = fopen (file, "r")))
246 ERROR ("Cannot open '%s': %s", file,
247 sstrerror (errno, errbuf, sizeof (errbuf)));
250 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
252 int n = strsplit (buffer, cols, 4);
259 if (0 == strcmp (cols[0], "nr_threads:"))
260 type_instance = "total";
261 else if (0 == strcmp (cols[0], "nr_running:"))
262 type_instance = "running";
263 else if (0 == strcmp (cols[0], "nr_unintr:"))
264 type_instance = "uninterruptable";
265 else if (0 == strcmp (cols[0], "nr_onhold:"))
266 type_instance = "onhold";
270 value = atof (cols[1]);
271 submit_gauge (dent->d_name, "vs_threads", type_instance, value);
274 if (0 == strcmp (cols[0], "loadavg:"))
276 gauge_t snum = atof (cols[1]);
277 gauge_t mnum = atof (cols[2]);
278 gauge_t lnum = atof (cols[3]);
279 load_submit (dent->d_name, snum, mnum, lnum);
282 } /* while (fgets) */
290 /* processes and memory usage */
291 len = ssnprintf (file, sizeof (file),
292 PROCDIR "/%s/limit", dent->d_name);
293 if ((len < 0) || ((size_t) len >= sizeof (file)))
296 if (NULL == (fh = fopen (file, "r")))
299 ERROR ("Cannot open '%s': %s", file,
300 sstrerror (errno, errbuf, sizeof (errbuf)));
303 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
305 char *type = "vs_memory";
309 if (strsplit (buffer, cols, 2) < 2)
312 if (0 == strcmp (cols[0], "PROC:"))
314 type = "vs_processes";
316 value = atof (cols[1]);
320 if (0 == strcmp (cols[0], "VM:"))
321 type_instance = "vm";
322 else if (0 == strcmp (cols[0], "VML:"))
323 type_instance = "vml";
324 else if (0 == strcmp (cols[0], "RSS:"))
325 type_instance = "rss";
326 else if (0 == strcmp (cols[0], "ANON:"))
327 type_instance = "anon";
331 value = atof (cols[1]) * pagesize;
334 submit_gauge (dent->d_name, type, type_instance, value);
335 } /* while (fgets) */
342 } /* while (readdir) */
347 } /* int vserver_read */
349 void module_register (void)
351 plugin_register_init ("vserver", vserver_init);
352 plugin_register_read ("vserver", vserver_read);
353 } /* void module_register(void) */
355 /* vim: set ts=4 sw=4 noexpandtab : */