2 * collectd - src/vserver.c
3 * Copyright (C) 2006,2007 Sebastian Harl
4 * Copyright (C) 2007-2010 Florian octo Forster
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
25 * Sebastian Harl <sh at tokkee.org>
26 * Florian octo Forster <octo at collectd.org>
35 #include <sys/types.h>
39 #define PROCDIR "/proc/virtual"
42 # error "No applicable input method."
45 static int pagesize = 0;
47 static int vserver_init (void)
49 /* XXX Should we check for getpagesize () in configure?
50 * What's the right thing to do, if there is no getpagesize ()? */
51 pagesize = getpagesize ();
54 } /* static void vserver_init(void) */
56 static void traffic_submit (const char *plugin_instance,
57 const char *type_instance, derive_t rx, derive_t tx)
60 value_list_t vl = VALUE_LIST_INIT;
62 values[0].derive = rx;
63 values[1].derive = tx;
66 vl.values_len = STATIC_ARRAY_SIZE (values);
67 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
68 sstrncpy (vl.plugin, "vserver", sizeof (vl.plugin));
69 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
70 sstrncpy (vl.type, "if_octets", sizeof (vl.type));
71 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
73 plugin_dispatch_values (&vl);
74 } /* void traffic_submit */
76 static void load_submit (const char *plugin_instance,
77 gauge_t snum, gauge_t mnum, gauge_t lnum)
80 value_list_t vl = VALUE_LIST_INIT;
82 values[0].gauge = snum;
83 values[1].gauge = mnum;
84 values[2].gauge = lnum;
87 vl.values_len = STATIC_ARRAY_SIZE (values);
88 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
89 sstrncpy (vl.plugin, "vserver", sizeof (vl.plugin));
90 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
91 sstrncpy (vl.type, "load", sizeof (vl.type));
93 plugin_dispatch_values (&vl);
96 static void submit_gauge (const char *plugin_instance, const char *type,
97 const char *type_instance, gauge_t value)
101 value_list_t vl = VALUE_LIST_INIT;
103 values[0].gauge = value;
106 vl.values_len = STATIC_ARRAY_SIZE (values);
107 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
108 sstrncpy (vl.plugin, "vserver", sizeof (vl.plugin));
109 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
110 sstrncpy (vl.type, type, sizeof (vl.type));
111 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
113 plugin_dispatch_values (&vl);
114 } /* void submit_gauge */
116 static derive_t vserver_get_sock_bytes(const char *s)
127 status = parse_value (s, &v, DS_TYPE_DERIVE);
133 static int vserver_read (void)
136 # define DIRENT_BUFFER_SIZE (sizeof (struct dirent) + 1024 + 1)
138 # define DIRENT_BUFFER_SIZE (sizeof (struct dirent) + NAME_MAX + 1)
142 struct dirent *dent; /* 42 */
143 char dirent_buffer[DIRENT_BUFFER_SIZE];
146 proc = opendir (PROCDIR);
150 ERROR ("vserver plugin: fopen (%s): %s", PROCDIR,
151 sstrerror (errno, errbuf, sizeof (errbuf)));
161 char buffer[BUFSIZE];
168 status = readdir_r (proc, (struct dirent *) dirent_buffer, &dent);
172 ERROR ("vserver plugin: readdir_r failed: %s",
173 sstrerror (errno, errbuf, sizeof (errbuf)));
177 else if (dent == NULL)
179 /* end of directory */
183 if (dent->d_name[0] == '.')
186 len = ssnprintf (file, sizeof (file), PROCDIR "/%s", dent->d_name);
187 if ((len < 0) || (len >= BUFSIZE))
190 status = stat (file, &statbuf);
194 WARNING ("vserver plugin: stat (%s) failed: %s",
195 file, sstrerror (errno, errbuf, sizeof (errbuf)));
199 if (!S_ISDIR (statbuf.st_mode))
202 /* socket message accounting */
203 len = ssnprintf (file, sizeof (file),
204 PROCDIR "/%s/cacct", dent->d_name);
205 if ((len < 0) || ((size_t) len >= sizeof (file)))
208 if (NULL == (fh = fopen (file, "r")))
211 ERROR ("Cannot open '%s': %s", file,
212 sstrerror (errno, errbuf, sizeof (errbuf)));
215 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
219 const char *type_instance;
221 if (strsplit (buffer, cols, 4) < 4)
224 if (0 == strcmp (cols[0], "UNIX:"))
225 type_instance = "unix";
226 else if (0 == strcmp (cols[0], "INET:"))
227 type_instance = "inet";
228 else if (0 == strcmp (cols[0], "INET6:"))
229 type_instance = "inet6";
230 else if (0 == strcmp (cols[0], "OTHER:"))
231 type_instance = "other";
232 else if (0 == strcmp (cols[0], "UNSPEC:"))
233 type_instance = "unspec";
237 rx = vserver_get_sock_bytes (cols[1]);
238 tx = vserver_get_sock_bytes (cols[2]);
239 /* cols[3] == errors */
241 traffic_submit (dent->d_name, type_instance, rx, tx);
242 } /* while (fgets) */
250 /* thread information and load */
251 len = ssnprintf (file, sizeof (file),
252 PROCDIR "/%s/cvirt", dent->d_name);
253 if ((len < 0) || ((size_t) len >= sizeof (file)))
256 if (NULL == (fh = fopen (file, "r")))
259 ERROR ("Cannot open '%s': %s", file,
260 sstrerror (errno, errbuf, sizeof (errbuf)));
263 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
265 int n = strsplit (buffer, cols, 4);
269 const char *type_instance;
272 if (0 == strcmp (cols[0], "nr_threads:"))
273 type_instance = "total";
274 else if (0 == strcmp (cols[0], "nr_running:"))
275 type_instance = "running";
276 else if (0 == strcmp (cols[0], "nr_unintr:"))
277 type_instance = "uninterruptable";
278 else if (0 == strcmp (cols[0], "nr_onhold:"))
279 type_instance = "onhold";
283 value = atof (cols[1]);
284 submit_gauge (dent->d_name, "vs_threads", type_instance, value);
287 if (0 == strcmp (cols[0], "loadavg:"))
289 gauge_t snum = atof (cols[1]);
290 gauge_t mnum = atof (cols[2]);
291 gauge_t lnum = atof (cols[3]);
292 load_submit (dent->d_name, snum, mnum, lnum);
295 } /* while (fgets) */
303 /* processes and memory usage */
304 len = ssnprintf (file, sizeof (file),
305 PROCDIR "/%s/limit", dent->d_name);
306 if ((len < 0) || ((size_t) len >= sizeof (file)))
309 if (NULL == (fh = fopen (file, "r")))
312 ERROR ("Cannot open '%s': %s", file,
313 sstrerror (errno, errbuf, sizeof (errbuf)));
316 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
318 const char *type = "vs_memory";
319 const char *type_instance;
322 if (strsplit (buffer, cols, 2) < 2)
325 if (0 == strcmp (cols[0], "PROC:"))
327 type = "vs_processes";
329 value = atof (cols[1]);
333 if (0 == strcmp (cols[0], "VM:"))
334 type_instance = "vm";
335 else if (0 == strcmp (cols[0], "VML:"))
336 type_instance = "vml";
337 else if (0 == strcmp (cols[0], "RSS:"))
338 type_instance = "rss";
339 else if (0 == strcmp (cols[0], "ANON:"))
340 type_instance = "anon";
344 value = atof (cols[1]) * pagesize;
347 submit_gauge (dent->d_name, type, type_instance, value);
348 } /* while (fgets) */
355 } /* while (readdir) */
360 } /* int vserver_read */
362 void module_register (void)
364 plugin_register_init ("vserver", vserver_init);
365 plugin_register_read ("vserver", vserver_read);
366 } /* void module_register(void) */
368 /* vim: set ts=4 sw=4 noexpandtab : */