2 * collectd - src/swap.c
3 * Copyright (C) 2005-2012 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 environment" */
32 #if HAVE_SYS_SWAP_H && !defined(_LP64) && _FILE_OFFSET_BITS == 64
33 # undef _FILE_OFFSET_BITS
34 # undef _LARGEFILE64_SOURCE
42 # include <sys/swap.h>
48 # include <sys/param.h>
51 # include <sys/sysctl.h>
54 # include <sys/dkstat.h>
61 # include <statgrab.h>
65 # include <sys/protosw.h>
66 # include <libperfstat.h>
70 #define MAX(x,y) ((x) > (y) ? (x) : (y))
73 # define SWAP_HAVE_REPORT_BY_DEVICE 1
74 static derive_t pagesize;
75 static _Bool report_bytes = 0;
76 static _Bool report_by_device = 0;
77 /* #endif KERNEL_LINUX */
79 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS
80 # define SWAP_HAVE_REPORT_BY_DEVICE 1
81 static derive_t pagesize;
82 static _Bool report_by_device = 0;
83 /* #endif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS */
85 #elif defined(VM_SWAPUSAGE)
86 /* No global variables */
87 /* #endif defined(VM_SWAPUSAGE) */
89 #elif HAVE_LIBKVM_GETSWAPINFO
90 static kvm_t *kvm_obj = NULL;
92 /* #endif HAVE_LIBKVM_GETSWAPINFO */
94 #elif HAVE_LIBSTATGRAB
95 /* No global variables */
96 /* #endif HAVE_LIBSTATGRAB */
100 static perfstat_memory_total_t pmemory;
101 /*# endif HAVE_PERFSTAT */
104 # error "No applicable input method."
105 #endif /* HAVE_LIBSTATGRAB */
107 static const char *config_keys[] =
112 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
114 static int swap_config (const char *key, const char *value) /* {{{ */
116 if (strcasecmp ("ReportBytes", key) == 0)
119 report_bytes = IS_TRUE (value) ? 1 : 0;
121 WARNING ("swap plugin: The \"ReportBytes\" option is only "
122 "valid under Linux. "
123 "The option is going to be ignored.");
126 else if (strcasecmp ("ReportByDevice", key) == 0)
128 #if SWAP_HAVE_REPORT_BY_DEVICE
130 report_by_device = 1;
132 report_by_device = 0;
134 WARNING ("swap plugin: The \"ReportByDevice\" option is not "
135 "supported on this platform. "
136 "The option is going to be ignored.");
137 #endif /* SWAP_HAVE_REPORT_BY_DEVICE */
145 } /* }}} int swap_config */
147 static int swap_init (void) /* {{{ */
150 pagesize = (derive_t) sysconf (_SC_PAGESIZE);
151 /* #endif KERNEL_LINUX */
153 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS
154 /* getpagesize(3C) tells me this does not fail.. */
155 pagesize = (derive_t) getpagesize ();
156 /* #endif HAVE_SWAPCTL */
158 #elif defined(VM_SWAPUSAGE)
160 /* #endif defined(VM_SWAPUSAGE) */
162 #elif HAVE_LIBKVM_GETSWAPINFO
163 char errbuf[_POSIX2_LINE_MAX];
171 kvm_pagesize = getpagesize ();
173 kvm_obj = kvm_openfiles (NULL, "/dev/null", NULL, O_RDONLY, errbuf);
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 (const char *plugin_instance, /* {{{ */
194 const char *type, const char *type_instance,
197 value_list_t vl = VALUE_LIST_INIT;
199 assert (type != NULL);
203 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
204 sstrncpy (vl.plugin, "swap", sizeof (vl.plugin));
205 if (plugin_instance != NULL)
206 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
207 sstrncpy (vl.type, type, sizeof (vl.type));
208 if (type_instance != NULL)
209 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
211 plugin_dispatch_values (&vl);
212 } /* }}} void swap_submit_inst */
214 static void swap_submit_gauge (const char *plugin_instance, /* {{{ */
215 const char *type_instance, gauge_t value)
220 swap_submit (plugin_instance, "swap", type_instance, v);
221 } /* }}} void swap_submit_gauge */
223 #if KERNEL_LINUX || HAVE_PERFSTAT
224 static void swap_submit_derive (const char *plugin_instance, /* {{{ */
225 const char *type_instance, derive_t value)
230 swap_submit (plugin_instance, "swap_io", type_instance, v);
231 } /* }}} void swap_submit_derive */
235 static int swap_read_separate (void) /* {{{ */
240 fh = fopen ("/proc/swaps", "r");
244 WARNING ("swap plugin: fopen (/proc/swaps) failed: %s",
245 sstrerror (errno, errbuf, sizeof (errbuf)));
249 while (fgets (buffer, sizeof (buffer), fh) != NULL)
260 numfields = strsplit (buffer, fields, STATIC_ARRAY_SIZE (fields));
264 sstrncpy (path, fields[0], sizeof (path));
265 escape_slashes (path, sizeof (path));
269 size = strtod (fields[2], &endptr);
270 if ((endptr == fields[2]) || (errno != 0))
275 used = strtod (fields[3], &endptr);
276 if ((endptr == fields[3]) || (errno != 0))
284 swap_submit_gauge (path, "used", used);
285 swap_submit_gauge (path, "free", free);
291 } /* }}} int swap_read_separate */
293 static int swap_read_combined (void) /* {{{ */
298 uint8_t have_data = 0;
299 gauge_t swap_used = 0.0;
300 gauge_t swap_cached = 0.0;
301 gauge_t swap_free = 0.0;
302 gauge_t swap_total = 0.0;
304 fh = fopen ("/proc/meminfo", "r");
308 WARNING ("swap plugin: fopen (/proc/meminfo) failed: %s",
309 sstrerror (errno, errbuf, sizeof (errbuf)));
313 while (fgets (buffer, sizeof (buffer), fh) != NULL)
318 numfields = strsplit (buffer, fields, STATIC_ARRAY_SIZE (fields));
322 if (strcasecmp (fields[0], "SwapTotal:") == 0)
324 swap_total = strtod (fields[1], /* endptr = */ NULL);
327 else if (strcasecmp (fields[0], "SwapFree:") == 0)
329 swap_free = strtod (fields[1], /* endptr = */ NULL);
332 else if (strcasecmp (fields[0], "SwapCached:") == 0)
334 swap_cached = strtod (fields[1], /* endptr = */ NULL);
341 if ((have_data & 0x03) != 0x03)
344 if (isnan (swap_total)
345 || (swap_total <= 0.0)
346 || ((swap_free + swap_cached) > swap_total))
349 swap_used = swap_total - (swap_free + swap_cached);
351 swap_submit_gauge (NULL, "used", 1024.0 * swap_used);
352 swap_submit_gauge (NULL, "free", 1024.0 * swap_free);
353 if (have_data & 0x04)
354 swap_submit_gauge (NULL, "cached", 1024.0 * swap_cached);
357 } /* }}} int swap_read_combined */
359 static int swap_read_io (void) /* {{{ */
364 _Bool old_kernel = 0;
366 uint8_t have_data = 0;
367 derive_t swap_in = 0;
368 derive_t swap_out = 0;
370 fh = fopen ("/proc/vmstat", "r");
373 /* /proc/vmstat does not exist in kernels <2.6 */
374 fh = fopen ("/proc/stat", "r");
378 WARNING ("swap: fopen: %s",
379 sstrerror (errno, errbuf, sizeof (errbuf)));
386 while (fgets (buffer, sizeof (buffer), fh) != NULL)
391 numfields = strsplit (buffer, fields, STATIC_ARRAY_SIZE (fields));
398 if (strcasecmp ("pswpin", fields[0]) == 0)
400 strtoderive (fields[1], &swap_in);
403 else if (strcasecmp ("pswpout", fields[0]) == 0)
405 strtoderive (fields[1], &swap_out);
409 else /* if (old_kernel) */
414 if (strcasecmp ("page", fields[0]) == 0)
416 strtoderive (fields[1], &swap_in);
417 strtoderive (fields[2], &swap_out);
420 } /* while (fgets) */
424 if (have_data != 0x03)
429 swap_in = swap_in * pagesize;
430 swap_out = swap_out * pagesize;
433 swap_submit_derive (NULL, "in", swap_in);
434 swap_submit_derive (NULL, "out", swap_out);
437 } /* }}} int swap_read_io */
439 static int swap_read (void) /* {{{ */
441 if (report_by_device)
442 swap_read_separate ();
444 swap_read_combined ();
449 } /* }}} int swap_read */
450 /* #endif KERNEL_LINUX */
453 * Under Solaris, two mechanisms can be used to read swap statistics, swapctl
454 * and kstat. The former reads physical space used on a device, the latter
455 * reports the view from the virtual memory system. It was decided that the
456 * kstat-based information should be moved to the "vmem" plugin, but nobody
457 * with enough Solaris experience was available at that time to do this. The
458 * code below is still there for your reference but it won't be activated in
459 * *this* plugin again. --octo
461 #elif 0 && HAVE_LIBKSTAT
462 /* kstat-based read function */
463 static int swap_read_kstat (void) /* {{{ */
471 if (swapctl (SC_AINFO, &ai) == -1)
474 ERROR ("swap plugin: swapctl failed: %s",
475 sstrerror (errno, errbuf, sizeof (errbuf)));
481 * http://cvs.opensolaris.org/source/xref/on/usr/src/cmd/swap/swap.c
483 * http://www.itworld.com/Comp/2377/UIR980701perf/ (outdated?)
484 * /usr/include/vm/anon.h
486 * In short, swap -s shows: allocated + reserved = used, available
488 * However, Solaris does not allow to allocated/reserved more than the
489 * available swap (physical memory + disk swap), so the pedant may
490 * prefer: allocated + unallocated = reserved, available
492 * We map the above to: used + resv = n/a, free
494 * Does your brain hurt yet? - Christophe Kalt
496 * Oh, and in case you wonder,
497 * swap_alloc = pagesize * ( ai.ani_max - ai.ani_free );
498 * can suffer from a 32bit overflow.
500 swap_alloc = (derive_t) ((ai.ani_max - ai.ani_free) * pagesize);
501 swap_resv = (derive_t) ((ai.ani_resv + ai.ani_free - ai.ani_max)
503 swap_avail = (derive_t) ((ai.ani_max - ai.ani_resv) * pagesize);
505 swap_submit_gauge (NULL, "used", swap_alloc);
506 swap_submit_gauge (NULL, "free", swap_avail);
507 swap_submit_gauge (NULL, "reserved", swap_resv);
510 } /* }}} int swap_read_kstat */
511 /* #endif 0 && HAVE_LIBKSTAT */
513 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS
514 /* swapctl-based read function */
515 static int swap_read (void) /* {{{ */
526 swap_num = swapctl (SC_GETNSWP, NULL);
529 ERROR ("swap plugin: swapctl (SC_GETNSWP) failed with status %i.",
533 else if (swap_num == 0)
536 /* Allocate and initialize the swaptbl_t structure */
537 s = malloc (swap_num * sizeof (swapent_t) + sizeof (struct swaptable));
540 ERROR ("swap plugin: malloc failed.");
544 /* Memory to store the path names. We only use these paths when the
545 * separate option has been configured, but it's easier to just
546 * allocate enough memory in any case. */
547 s_paths = calloc (swap_num, PATH_MAX);
550 ERROR ("swap plugin: calloc failed.");
554 for (i = 0; i < swap_num; i++)
555 s->swt_ent[i].ste_path = s_paths + (i * PATH_MAX);
558 status = swapctl (SC_LIST, s);
562 ERROR ("swap plugin: swapctl (SC_LIST) failed: %s",
563 sstrerror (errno, errbuf, sizeof (errbuf)));
568 else if (swap_num < status)
570 /* more elements returned than requested */
571 ERROR ("swap plugin: I allocated memory for %i structure%s, "
572 "but swapctl(2) claims to have returned %i. "
573 "I'm confused and will give up.",
574 swap_num, (swap_num == 1) ? "" : "s",
580 else if (swap_num > status)
581 /* less elements returned than requested */
584 for (i = 0; i < swap_num; i++)
590 if ((s->swt_ent[i].ste_flags & ST_INDEL) != 0)
593 this_total = ((derive_t) s->swt_ent[i].ste_pages) * pagesize;
594 this_avail = ((derive_t) s->swt_ent[i].ste_free) * pagesize;
596 /* Shortcut for the "combined" setting (default) */
597 if (!report_by_device)
604 sstrncpy (path, s->swt_ent[i].ste_path, sizeof (path));
605 escape_slashes (path, sizeof (path));
607 swap_submit_gauge (path, "used", (gauge_t) (this_total - this_avail));
608 swap_submit_gauge (path, "free", (gauge_t) this_avail);
609 } /* for (swap_num) */
613 ERROR ("swap plugin: Total swap space (%"PRIi64") "
614 "is less than free swap space (%"PRIi64").",
621 /* If the "separate" option was specified (report_by_device == 2), all
622 * values have already been dispatched from within the loop. */
623 if (!report_by_device)
625 swap_submit_gauge (NULL, "used", (gauge_t) (total - avail));
626 swap_submit_gauge (NULL, "free", (gauge_t) avail);
632 } /* }}} int swap_read */
633 /* #endif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS */
635 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_THREE_ARGS
636 static int swap_read (void) /* {{{ */
638 struct swapent *swap_entries;
646 swap_num = swapctl (SWAP_NSWAP, NULL, 0);
649 ERROR ("swap plugin: swapctl (SWAP_NSWAP) failed with status %i.",
653 else if (swap_num == 0)
656 swap_entries = calloc (swap_num, sizeof (*swap_entries));
657 if (swap_entries == NULL)
659 ERROR ("swap plugin: calloc failed.");
663 status = swapctl (SWAP_STATS, swap_entries, swap_num);
664 if (status != swap_num)
666 ERROR ("swap plugin: swapctl (SWAP_STATS) failed with status %i.",
668 sfree (swap_entries);
672 #if defined(DEV_BSIZE) && (DEV_BSIZE > 0)
673 # define C_SWAP_BLOCK_SIZE ((derive_t) DEV_BSIZE)
675 # define C_SWAP_BLOCK_SIZE ((derive_t) 512)
678 for (i = 0; i < swap_num; i++)
680 if ((swap_entries[i].se_flags & SWF_ENABLE) == 0)
683 used += ((derive_t) swap_entries[i].se_inuse)
685 total += ((derive_t) swap_entries[i].se_nblks)
691 ERROR ("swap plugin: Total swap space (%"PRIu64") "
692 "is less than used swap space (%"PRIu64").",
697 swap_submit_gauge (NULL, "used", (gauge_t) used);
698 swap_submit_gauge (NULL, "free", (gauge_t) (total - used));
700 sfree (swap_entries);
703 } /* }}} int swap_read */
704 /* #endif HAVE_SWAPCTL && HAVE_SWAPCTL_THREE_ARGS */
706 #elif defined(VM_SWAPUSAGE)
707 static int swap_read (void) /* {{{ */
711 struct xsw_usage sw_usage;
716 mib[1] = VM_SWAPUSAGE;
718 sw_usage_len = sizeof (struct xsw_usage);
720 if (sysctl (mib, mib_len, &sw_usage, &sw_usage_len, NULL, 0) != 0)
723 /* The returned values are bytes. */
724 swap_submit_gauge (NULL, "used", (gauge_t) sw_usage.xsu_used);
725 swap_submit_gauge (NULL, "free", (gauge_t) sw_usage.xsu_avail);
728 } /* }}} int swap_read */
729 /* #endif VM_SWAPUSAGE */
731 #elif HAVE_LIBKVM_GETSWAPINFO
732 static int swap_read (void) /* {{{ */
734 struct kvm_swap data_s;
744 /* only one structure => only get the grand total, no details */
745 status = kvm_getswapinfo (kvm_obj, &data_s, 1, 0);
749 total = (derive_t) data_s.ksw_total;
750 used = (derive_t) data_s.ksw_used;
752 total *= (derive_t) kvm_pagesize;
753 used *= (derive_t) kvm_pagesize;
757 swap_submit_gauge (NULL, "used", (gauge_t) used);
758 swap_submit_gauge (NULL, "free", (gauge_t) free);
761 } /* }}} int swap_read */
762 /* #endif HAVE_LIBKVM_GETSWAPINFO */
764 #elif HAVE_LIBSTATGRAB
765 static int swap_read (void) /* {{{ */
769 swap = sg_get_swap_stats ();
774 swap_submit_gauge (NULL, "used", (gauge_t) swap->used);
775 swap_submit_gauge (NULL, "free", (gauge_t) swap->free);
778 } /* }}} int swap_read */
779 /* #endif HAVE_LIBSTATGRAB */
782 static int swap_read (void) /* {{{ */
784 if(perfstat_memory_total(NULL, &pmemory, sizeof(perfstat_memory_total_t), 1) < 0)
787 WARNING ("memory plugin: perfstat_memory_total failed: %s",
788 sstrerror (errno, errbuf, sizeof (errbuf)));
792 swap_submit_gauge (NULL, "used", (gauge_t) (pmemory.pgsp_total - pmemory.pgsp_free) * pagesize);
793 swap_submit_gauge (NULL, "free", (gauge_t) pmemory.pgsp_free * pagesize );
794 swap_submit_gauge (NULL, "reserved", (gauge_t) pmemory.pgsp_rsvd * pagesize);
795 swap_submit_derive (NULL, "in", (derive_t) pmemory.pgspins * pagesize);
796 swap_submit_derive (NULL, "out", (derive_t) pmemory.pgspouts * pagesize);
799 } /* }}} int swap_read */
800 #endif /* HAVE_PERFSTAT */
802 void module_register (void)
804 plugin_register_config ("swap", swap_config,
805 config_keys, config_keys_num);
806 plugin_register_init ("swap", swap_init);
807 plugin_register_read ("swap", swap_read);
808 } /* void module_register */
810 /* vim: set fdm=marker : */