2 * collectd - src/swap.c
3 * Copyright (C) 2005-2014 Florian octo Forster
4 * Copyright (C) 2009 Stefan Völkel
5 * Copyright (C) 2009 Manuel Sanmartin
6 * Copyright (C) 2010 Aurélien Reynaud
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; only version 2 of the License is applicable.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 * Florian octo Forster <octo at collectd.org>
24 * Aurélien Reynaud <collectd at wattapower.net>
31 /* avoid swap.h error "Cannot use swapctl in the large files compilation
33 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
34 #undef _FILE_OFFSET_BITS
35 #undef _LARGEFILE64_SOURCE
50 #include <sys/param.h>
53 #include <sys/sysctl.h>
56 #include <sys/dkstat.h>
67 #include <libperfstat.h>
68 #include <sys/protosw.h>
72 #define MAX(x, y) ((x) > (y) ? (x) : (y))
75 #define SWAP_HAVE_REPORT_BY_DEVICE 1
76 static derive_t pagesize;
77 static bool report_bytes;
78 static bool report_by_device;
79 /* #endif KERNEL_LINUX */
81 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS
82 #define SWAP_HAVE_REPORT_BY_DEVICE 1
83 static derive_t pagesize;
84 static bool report_by_device;
85 /* #endif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS */
87 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_THREE_ARGS
88 /* No global variables */
89 /* #endif HAVE_SWAPCTL && HAVE_SWAPCTL_THREE_ARGS */
91 #elif defined(VM_SWAPUSAGE)
92 /* No global variables */
93 /* #endif defined(VM_SWAPUSAGE) */
95 #elif HAVE_LIBKVM_GETSWAPINFO
96 static kvm_t *kvm_obj;
98 /* #endif HAVE_LIBKVM_GETSWAPINFO */
100 #elif HAVE_LIBSTATGRAB
101 /* No global variables */
102 /* #endif HAVE_LIBSTATGRAB */
106 /*# endif HAVE_PERFSTAT */
109 #error "No applicable input method."
110 #endif /* HAVE_LIBSTATGRAB */
112 static bool values_absolute = true;
113 static bool values_percentage;
114 static bool report_io = true;
116 static int swap_config(oconfig_item_t *ci) /* {{{ */
118 for (int i = 0; i < ci->children_num; i++) {
119 oconfig_item_t *child = ci->children + i;
120 if (strcasecmp("ReportBytes", child->key) == 0)
122 cf_util_get_boolean(child, &report_bytes);
124 WARNING("swap plugin: The \"ReportBytes\" option "
125 "is only valid under Linux. "
126 "The option is going to be ignored.");
128 else if (strcasecmp("ReportByDevice", child->key) == 0)
129 #if SWAP_HAVE_REPORT_BY_DEVICE
130 cf_util_get_boolean(child, &report_by_device);
132 WARNING("swap plugin: The \"ReportByDevice\" option "
133 "is not supported on this platform. "
134 "The option is going to be ignored.");
135 #endif /* SWAP_HAVE_REPORT_BY_DEVICE */
136 else if (strcasecmp("ValuesAbsolute", child->key) == 0)
137 cf_util_get_boolean(child, &values_absolute);
138 else if (strcasecmp("ValuesPercentage", child->key) == 0)
139 cf_util_get_boolean(child, &values_percentage);
140 else if (strcasecmp("ReportIO", child->key) == 0)
141 cf_util_get_boolean(child, &report_io);
143 WARNING("swap plugin: Unknown config option: \"%s\"", child->key);
147 } /* }}} int swap_config */
149 static int swap_init(void) /* {{{ */
152 pagesize = (derive_t)sysconf(_SC_PAGESIZE);
153 /* #endif KERNEL_LINUX */
155 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS
156 /* getpagesize(3C) tells me this does not fail.. */
157 pagesize = (derive_t)getpagesize();
158 /* #endif HAVE_SWAPCTL */
160 #elif defined(VM_SWAPUSAGE)
162 /* #endif defined(VM_SWAPUSAGE) */
164 #elif HAVE_LIBKVM_GETSWAPINFO
165 char errbuf[_POSIX2_LINE_MAX];
167 if (kvm_obj != NULL) {
172 kvm_pagesize = getpagesize();
174 kvm_obj = kvm_openfiles(NULL, "/dev/null", NULL, O_RDONLY, errbuf);
176 if (kvm_obj == NULL) {
177 ERROR("swap plugin: kvm_openfiles failed, %s", errbuf);
180 /* #endif HAVE_LIBKVM_GETSWAPINFO */
182 #elif HAVE_LIBSTATGRAB
184 /* #endif HAVE_LIBSTATGRAB */
187 pagesize = getpagesize();
188 #endif /* HAVE_PERFSTAT */
191 } /* }}} int swap_init */
193 static void swap_submit_usage(char const *plugin_instance, /* {{{ */
194 gauge_t used, gauge_t free,
195 char const *other_name, gauge_t other_value) {
196 value_list_t vl = VALUE_LIST_INIT;
198 vl.values = &(value_t){.gauge = NAN};
200 sstrncpy(vl.plugin, "swap", sizeof(vl.plugin));
201 if (plugin_instance != NULL)
202 sstrncpy(vl.plugin_instance, plugin_instance, sizeof(vl.plugin_instance));
203 sstrncpy(vl.type, "swap", sizeof(vl.type));
206 plugin_dispatch_multivalue(&vl, false, DS_TYPE_GAUGE, "used", used, "free",
207 free, other_name, other_value, NULL);
208 if (values_percentage)
209 plugin_dispatch_multivalue(&vl, true, DS_TYPE_GAUGE, "used", used, "free",
210 free, other_name, other_value, NULL);
211 } /* }}} void swap_submit_usage */
213 #if KERNEL_LINUX || HAVE_PERFSTAT
214 __attribute__((nonnull(1))) static void
215 swap_submit_derive(char const *type_instance, /* {{{ */
217 value_list_t vl = VALUE_LIST_INIT;
219 vl.values = &(value_t){.derive = value};
221 sstrncpy(vl.plugin, "swap", sizeof(vl.plugin));
222 sstrncpy(vl.type, "swap_io", sizeof(vl.type));
223 sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
225 plugin_dispatch_values(&vl);
226 } /* }}} void swap_submit_derive */
230 static int swap_read_separate(void) /* {{{ */
235 fh = fopen("/proc/swaps", "r");
237 WARNING("swap plugin: fopen (/proc/swaps) failed: %s", STRERRNO);
241 while (fgets(buffer, sizeof(buffer), fh) != NULL) {
250 numfields = strsplit(buffer, fields, STATIC_ARRAY_SIZE(fields));
254 sstrncpy(path, fields[0], sizeof(path));
255 escape_slashes(path, sizeof(path));
259 total = strtod(fields[2], &endptr);
260 if ((endptr == fields[2]) || (errno != 0))
265 used = strtod(fields[3], &endptr);
266 if ((endptr == fields[3]) || (errno != 0))
272 swap_submit_usage(path, used * 1024.0, (total - used) * 1024.0, NULL, NAN);
278 } /* }}} int swap_read_separate */
280 static int swap_read_combined(void) /* {{{ */
285 gauge_t swap_used = NAN;
286 gauge_t swap_cached = NAN;
287 gauge_t swap_free = NAN;
288 gauge_t swap_total = NAN;
290 fh = fopen("/proc/meminfo", "r");
292 WARNING("swap plugin: fopen (/proc/meminfo) failed: %s", STRERRNO);
296 while (fgets(buffer, sizeof(buffer), fh) != NULL) {
300 numfields = strsplit(buffer, fields, STATIC_ARRAY_SIZE(fields));
304 if (strcasecmp(fields[0], "SwapTotal:") == 0)
305 strtogauge(fields[1], &swap_total);
306 else if (strcasecmp(fields[0], "SwapFree:") == 0)
307 strtogauge(fields[1], &swap_free);
308 else if (strcasecmp(fields[0], "SwapCached:") == 0)
309 strtogauge(fields[1], &swap_cached);
314 if (isnan(swap_total) || isnan(swap_free))
317 /* Some systems, OpenVZ for example, don't provide SwapCached. */
318 if (isnan(swap_cached))
319 swap_used = swap_total - swap_free;
321 swap_used = swap_total - (swap_free + swap_cached);
322 assert(!isnan(swap_used));
327 swap_submit_usage(NULL, swap_used * 1024.0, swap_free * 1024.0,
328 isnan(swap_cached) ? NULL : "cached",
329 isnan(swap_cached) ? NAN : swap_cached * 1024.0);
331 } /* }}} int swap_read_combined */
333 static int swap_read_io(void) /* {{{ */
338 bool old_kernel = false;
340 uint8_t have_data = 0;
341 derive_t swap_in = 0;
342 derive_t swap_out = 0;
344 fh = fopen("/proc/vmstat", "r");
346 /* /proc/vmstat does not exist in kernels <2.6 */
347 fh = fopen("/proc/stat", "r");
349 WARNING("swap: fopen: %s", STRERRNO);
355 while (fgets(buffer, sizeof(buffer), fh) != NULL) {
359 numfields = strsplit(buffer, fields, STATIC_ARRAY_SIZE(fields));
365 if (strcasecmp("pswpin", fields[0]) == 0) {
366 strtoderive(fields[1], &swap_in);
368 } else if (strcasecmp("pswpout", fields[0]) == 0) {
369 strtoderive(fields[1], &swap_out);
372 } else /* if (old_kernel) */
377 if (strcasecmp("page", fields[0]) == 0) {
378 strtoderive(fields[1], &swap_in);
379 strtoderive(fields[2], &swap_out);
382 } /* while (fgets) */
386 if (have_data != 0x03)
390 swap_in = swap_in * pagesize;
391 swap_out = swap_out * pagesize;
394 swap_submit_derive("in", swap_in);
395 swap_submit_derive("out", swap_out);
398 } /* }}} int swap_read_io */
400 static int swap_read(void) /* {{{ */
402 if (report_by_device)
403 swap_read_separate();
405 swap_read_combined();
411 } /* }}} int swap_read */
412 /* #endif KERNEL_LINUX */
415 * Under Solaris, two mechanisms can be used to read swap statistics, swapctl
416 * and kstat. The former reads physical space used on a device, the latter
417 * reports the view from the virtual memory system. It was decided that the
418 * kstat-based information should be moved to the "vmem" plugin, but nobody
419 * with enough Solaris experience was available at that time to do this. The
420 * code below is still there for your reference but it won't be activated in
421 * *this* plugin again. --octo
423 #elif 0 && HAVE_LIBKSTAT
424 /* kstat-based read function */
425 static int swap_read_kstat(void) /* {{{ */
433 if (swapctl(SC_AINFO, &ai) == -1) {
434 ERROR("swap plugin: swapctl failed: %s", STRERRNO);
440 * http://cvs.opensolaris.org/source/xref/on/usr/src/cmd/swap/swap.c
442 * http://www.itworld.com/Comp/2377/UIR980701perf/ (outdated?)
443 * /usr/include/vm/anon.h
445 * In short, swap -s shows: allocated + reserved = used, available
447 * However, Solaris does not allow to allocated/reserved more than the
448 * available swap (physical memory + disk swap), so the pedant may
449 * prefer: allocated + unallocated = reserved, available
451 * We map the above to: used + resv = n/a, free
453 * Does your brain hurt yet? - Christophe Kalt
455 * Oh, and in case you wonder,
456 * swap_alloc = pagesize * ( ai.ani_max - ai.ani_free );
457 * can suffer from a 32bit overflow.
459 swap_alloc = (gauge_t)((ai.ani_max - ai.ani_free) * pagesize);
460 swap_resv = (gauge_t)((ai.ani_resv + ai.ani_free - ai.ani_max) * pagesize);
461 swap_avail = (gauge_t)((ai.ani_max - ai.ani_resv) * pagesize);
463 swap_submit_usage(NULL, swap_alloc, swap_avail, "reserved", swap_resv);
465 } /* }}} int swap_read_kstat */
466 /* #endif 0 && HAVE_LIBKSTAT */
468 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS
469 /* swapctl-based read function */
470 static int swap_read(void) /* {{{ */
480 swap_num = swapctl(SC_GETNSWP, NULL);
482 ERROR("swap plugin: swapctl (SC_GETNSWP) failed with status %i.", swap_num);
484 } else if (swap_num == 0)
487 /* Allocate and initialize the swaptbl_t structure */
488 s = malloc(swap_num * sizeof(swapent_t) + sizeof(struct swaptable));
490 ERROR("swap plugin: malloc failed.");
494 /* Memory to store the path names. We only use these paths when the
495 * separate option has been configured, but it's easier to just
496 * allocate enough memory in any case. */
497 s_paths = calloc(swap_num, PATH_MAX);
498 if (s_paths == NULL) {
499 ERROR("swap plugin: calloc failed.");
503 for (int i = 0; i < swap_num; i++)
504 s->swt_ent[i].ste_path = s_paths + (i * PATH_MAX);
507 status = swapctl(SC_LIST, s);
509 ERROR("swap plugin: swapctl (SC_LIST) failed: %s", STRERRNO);
513 } else if (swap_num < status) {
514 /* more elements returned than requested */
515 ERROR("swap plugin: I allocated memory for %i structure%s, "
516 "but swapctl(2) claims to have returned %i. "
517 "I'm confused and will give up.",
518 swap_num, (swap_num == 1) ? "" : "s", status);
522 } else if (swap_num > status)
523 /* less elements returned than requested */
526 for (int i = 0; i < swap_num; i++) {
531 if ((s->swt_ent[i].ste_flags & ST_INDEL) != 0)
534 this_total = (gauge_t)(s->swt_ent[i].ste_pages * pagesize);
535 this_avail = (gauge_t)(s->swt_ent[i].ste_free * pagesize);
537 /* Shortcut for the "combined" setting (default) */
538 if (!report_by_device) {
544 sstrncpy(path, s->swt_ent[i].ste_path, sizeof(path));
545 escape_slashes(path, sizeof(path));
547 swap_submit_usage(path, this_total - this_avail, this_avail, NULL, NAN);
548 } /* for (swap_num) */
552 "swap plugin: Total swap space (%g) is less than free swap space (%g).",
559 /* If the "separate" option was specified (report_by_device == true) all
560 * values have already been dispatched from within the loop. */
561 if (!report_by_device)
562 swap_submit_usage(NULL, total - avail, avail, NULL, NAN);
567 } /* }}} int swap_read */
568 /* #endif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS */
570 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_THREE_ARGS
571 static int swap_read(void) /* {{{ */
573 struct swapent *swap_entries;
580 swap_num = swapctl(SWAP_NSWAP, NULL, 0);
582 ERROR("swap plugin: swapctl (SWAP_NSWAP) failed with status %i.", swap_num);
584 } else if (swap_num == 0)
587 swap_entries = calloc(swap_num, sizeof(*swap_entries));
588 if (swap_entries == NULL) {
589 ERROR("swap plugin: calloc failed.");
593 status = swapctl(SWAP_STATS, swap_entries, swap_num);
594 if (status != swap_num) {
595 ERROR("swap plugin: swapctl (SWAP_STATS) failed with status %i.", status);
600 #if defined(DEV_BSIZE) && (DEV_BSIZE > 0)
601 #define C_SWAP_BLOCK_SIZE ((gauge_t)DEV_BSIZE)
603 #define C_SWAP_BLOCK_SIZE 512.0
606 /* TODO: Report per-device stats. The path name is available from
607 * swap_entries[i].se_path */
608 for (int i = 0; i < swap_num; i++) {
609 if ((swap_entries[i].se_flags & SWF_ENABLE) == 0)
612 used += ((gauge_t)swap_entries[i].se_inuse) * C_SWAP_BLOCK_SIZE;
613 total += ((gauge_t)swap_entries[i].se_nblks) * C_SWAP_BLOCK_SIZE;
618 "swap plugin: Total swap space (%g) is less than used swap space (%g).",
624 swap_submit_usage(NULL, used, total - used, NULL, NAN);
628 } /* }}} int swap_read */
629 /* #endif HAVE_SWAPCTL && HAVE_SWAPCTL_THREE_ARGS */
631 #elif defined(VM_SWAPUSAGE)
632 static int swap_read(void) /* {{{ */
636 struct xsw_usage sw_usage;
641 mib[1] = VM_SWAPUSAGE;
643 sw_usage_len = sizeof(struct xsw_usage);
645 if (sysctl(mib, mib_len, &sw_usage, &sw_usage_len, NULL, 0) != 0)
648 /* The returned values are bytes. */
649 swap_submit_usage(NULL, (gauge_t)sw_usage.xsu_used,
650 (gauge_t)sw_usage.xsu_avail, NULL, NAN);
653 } /* }}} int swap_read */
654 /* #endif VM_SWAPUSAGE */
656 #elif HAVE_LIBKVM_GETSWAPINFO
657 static int swap_read(void) /* {{{ */
659 struct kvm_swap data_s;
668 /* only one structure => only get the grand total, no details */
669 status = kvm_getswapinfo(kvm_obj, &data_s, 1, 0);
673 total = (gauge_t)data_s.ksw_total;
674 used = (gauge_t)data_s.ksw_used;
676 total *= (gauge_t)kvm_pagesize;
677 used *= (gauge_t)kvm_pagesize;
679 swap_submit_usage(NULL, used, total - used, NULL, NAN);
682 } /* }}} int swap_read */
683 /* #endif HAVE_LIBKVM_GETSWAPINFO */
685 #elif HAVE_LIBSTATGRAB
686 static int swap_read(void) /* {{{ */
690 swap = sg_get_swap_stats();
694 swap_submit_usage(NULL, (gauge_t)swap->used, (gauge_t)swap->free, NULL, NAN);
697 } /* }}} int swap_read */
698 /* #endif HAVE_LIBSTATGRAB */
701 static int swap_read(void) /* {{{ */
703 perfstat_memory_total_t pmemory = {0};
711 perfstat_memory_total(NULL, &pmemory, sizeof(perfstat_memory_total_t), 1);
713 WARNING("swap plugin: perfstat_memory_total failed: %s", STRERRNO);
717 total = (gauge_t)(pmemory.pgsp_total * pagesize);
718 free = (gauge_t)(pmemory.pgsp_free * pagesize);
719 reserved = (gauge_t)(pmemory.pgsp_rsvd * pagesize);
721 swap_submit_usage(NULL, total - free, free, "reserved", reserved);
724 swap_submit_derive("in", (derive_t)pmemory.pgspins * pagesize);
725 swap_submit_derive("out", (derive_t)pmemory.pgspouts * pagesize);
729 } /* }}} int swap_read */
730 #endif /* HAVE_PERFSTAT */
732 void module_register(void) {
733 plugin_register_complex_config("swap", swap_config);
734 plugin_register_init("swap", swap_init);
735 plugin_register_read("swap", swap_read);
736 } /* void module_register */