Merge branch 'collectd-5.4'
[collectd.git] / src / swap.c
1 /**
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
7  *
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.
11  *
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.
16  *
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
20  *
21  * Authors:
22  *   Florian octo Forster <octo at collectd.org>
23  *   Manuel Sanmartin
24  *   Aurélien Reynaud <collectd at wattapower.net>
25  **/
26
27 #if HAVE_CONFIG_H
28 # include "config.h"
29 # undef HAVE_CONFIG_H
30 #endif
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
35 #endif
36
37 #include "collectd.h"
38 #include "common.h"
39 #include "plugin.h"
40
41 #if HAVE_SYS_SWAP_H
42 # include <sys/swap.h>
43 #endif
44 #if HAVE_VM_ANON_H
45 # include <vm/anon.h>
46 #endif
47 #if HAVE_SYS_PARAM_H
48 #  include <sys/param.h>
49 #endif
50 #if HAVE_SYS_SYSCTL_H
51 #  include <sys/sysctl.h>
52 #endif
53 #if HAVE_SYS_DKSTAT_H
54 #  include <sys/dkstat.h>
55 #endif
56 #if HAVE_KVM_H
57 #  include <kvm.h>
58 #endif
59
60 #if HAVE_STATGRAB_H
61 # include <statgrab.h>
62 #endif
63
64 #if HAVE_PERFSTAT
65 # include <sys/protosw.h>
66 # include <libperfstat.h>
67 #endif
68
69 #undef  MAX
70 #define MAX(x,y) ((x) > (y) ? (x) : (y))
71
72 #if KERNEL_LINUX
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 */
78
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 */
84
85 #elif defined(VM_SWAPUSAGE)
86 /* No global variables */
87 /* #endif defined(VM_SWAPUSAGE) */
88
89 #elif HAVE_LIBKVM_GETSWAPINFO
90 static kvm_t *kvm_obj = NULL;
91 int kvm_pagesize;
92 /* #endif HAVE_LIBKVM_GETSWAPINFO */
93
94 #elif HAVE_LIBSTATGRAB
95 /* No global variables */
96 /* #endif HAVE_LIBSTATGRAB */
97
98 #elif HAVE_PERFSTAT
99 static int pagesize;
100 /*# endif HAVE_PERFSTAT */
101
102 #else
103 # error "No applicable input method."
104 #endif /* HAVE_LIBSTATGRAB */
105
106 static _Bool values_absolute = 1;
107 static _Bool values_percentage = 0;
108
109 static int swap_config (oconfig_item_t *ci) /* {{{ */
110 {
111         int i;
112
113         for (i = 0; i < ci->children_num; i++)
114         {
115                 oconfig_item_t *child = ci->children + i;
116                 if (strcasecmp ("ReportBytes", child->key) == 0)
117 #if KERNEL_LINUX
118                         cf_util_get_boolean (child, &report_bytes);
119 #else
120                         WARNING ("swap plugin: The \"ReportBytes\" option "
121                                         "is only valid under Linux. "
122                                         "The option is going to be ignored.");
123 #endif
124                 else if (strcasecmp ("ReportByDevice", child->key) == 0)
125 #if SWAP_HAVE_REPORT_BY_DEVICE
126                         cf_util_get_boolean (child, &report_by_device);
127 #else
128                         WARNING ("swap plugin: The \"ReportByDevice\" option "
129                                         "is not supported on this platform. "
130                                         "The option is going to be ignored.");
131 #endif /* SWAP_HAVE_REPORT_BY_DEVICE */
132                 else if (strcasecmp ("ValuesAbsolute", child->key) == 0)
133                         cf_util_get_boolean (child, &values_absolute);
134                 else if (strcasecmp ("ValuesPercentage", child->key) == 0)
135                         cf_util_get_boolean (child, &values_percentage);
136                 else
137                         WARNING ("swap plugin: Unknown config option: \"%s\"",
138                                         child->key);
139         }
140
141         return (0);
142 } /* }}} int swap_config */
143
144 static int swap_init (void) /* {{{ */
145 {
146 #if KERNEL_LINUX
147         pagesize = (derive_t) sysconf (_SC_PAGESIZE);
148 /* #endif KERNEL_LINUX */
149
150 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS
151         /* getpagesize(3C) tells me this does not fail.. */
152         pagesize = (derive_t) getpagesize ();
153 /* #endif HAVE_SWAPCTL */
154
155 #elif defined(VM_SWAPUSAGE)
156         /* No init stuff */
157 /* #endif defined(VM_SWAPUSAGE) */
158
159 #elif HAVE_LIBKVM_GETSWAPINFO
160         char errbuf[_POSIX2_LINE_MAX];
161
162         if (kvm_obj != NULL)
163         {
164                 kvm_close (kvm_obj);
165                 kvm_obj = NULL;
166         }
167
168         kvm_pagesize = getpagesize ();
169
170         kvm_obj = kvm_openfiles (NULL, "/dev/null", NULL, O_RDONLY, errbuf);
171
172         if (kvm_obj == NULL)
173         {
174                 ERROR ("swap plugin: kvm_openfiles failed, %s", errbuf);
175                 return (-1);
176         }
177 /* #endif HAVE_LIBKVM_GETSWAPINFO */
178
179 #elif HAVE_LIBSTATGRAB
180         /* No init stuff */
181 /* #endif HAVE_LIBSTATGRAB */
182
183 #elif HAVE_PERFSTAT
184         pagesize = getpagesize();
185 #endif /* HAVE_PERFSTAT */
186
187         return (0);
188 } /* }}} int swap_init */
189
190 static void swap_submit_usage (char const *plugin_instance, /* {{{ */
191                 gauge_t used, gauge_t free,
192                 char const *other_name, gauge_t other_value)
193 {
194         value_t v[1];
195         value_list_t vl = VALUE_LIST_INIT;
196
197         vl.values = v;
198         vl.values_len = STATIC_ARRAY_SIZE (v);
199         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
200         sstrncpy (vl.plugin, "swap", sizeof (vl.plugin));
201         if (plugin_instance != NULL)
202                 sstrncpy (vl.plugin_instance, plugin_instance,
203                                 sizeof (vl.plugin_instance));
204         sstrncpy (vl.type, "swap", sizeof (vl.type));
205
206         if (values_absolute)
207                 plugin_dispatch_multivalue (&vl, 0, DS_TYPE_GAUGE,
208                                 "used", used, "free", free,
209                                 other_name, other_value, NULL);
210         if (values_percentage)
211                 plugin_dispatch_multivalue (&vl, 1, DS_TYPE_GAUGE,
212                                 "used", used, "free", free,
213                                 other_name, other_value, NULL);
214 } /* }}} void swap_submit_usage */
215
216 #if KERNEL_LINUX || HAVE_PERFSTAT
217 __attribute__((nonnull(1)))
218 static void swap_submit_derive (char const *type_instance, /* {{{ */
219                 derive_t value)
220 {
221         value_list_t vl = VALUE_LIST_INIT;
222         value_t v[1];
223
224         v[0].derive = value;
225
226         vl.values = v;
227         vl.values_len = STATIC_ARRAY_SIZE (v);
228         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
229         sstrncpy (vl.plugin, "swap", sizeof (vl.plugin));
230         sstrncpy (vl.type, "swap_io", sizeof (vl.type));
231         sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
232
233         plugin_dispatch_values (&vl);
234 } /* }}} void swap_submit_derive */
235 #endif
236
237 #if KERNEL_LINUX
238 static int swap_read_separate (void) /* {{{ */
239 {
240         FILE *fh;
241         char buffer[1024];
242
243         fh = fopen ("/proc/swaps", "r");
244         if (fh == NULL)
245         {
246                 char errbuf[1024];
247                 WARNING ("swap plugin: fopen (/proc/swaps) failed: %s",
248                                 sstrerror (errno, errbuf, sizeof (errbuf)));
249                 return (-1);
250         }
251
252         while (fgets (buffer, sizeof (buffer), fh) != NULL)
253         {
254                 char *fields[8];
255                 int numfields;
256                 char *endptr;
257
258                 char path[PATH_MAX];
259                 gauge_t total;
260                 gauge_t used;
261
262                 numfields = strsplit (buffer, fields, STATIC_ARRAY_SIZE (fields));
263                 if (numfields != 5)
264                         continue;
265
266                 sstrncpy (path, fields[0], sizeof (path));
267                 escape_slashes (path, sizeof (path));
268
269                 errno = 0;
270                 endptr = NULL;
271                 total = strtod (fields[2], &endptr);
272                 if ((endptr == fields[2]) || (errno != 0))
273                         continue;
274
275                 errno = 0;
276                 endptr = NULL;
277                 used = strtod (fields[3], &endptr);
278                 if ((endptr == fields[3]) || (errno != 0))
279                         continue;
280
281                 if (total < used)
282                         continue;
283
284                 swap_submit_usage (path, used, total - used, NULL, NAN);
285         }
286
287         fclose (fh);
288
289         return (0);
290 } /* }}} int swap_read_separate */
291
292 static int swap_read_combined (void) /* {{{ */
293 {
294         FILE *fh;
295         char buffer[1024];
296
297         gauge_t swap_used   = NAN;
298         gauge_t swap_cached = NAN;
299         gauge_t swap_free   = NAN;
300         gauge_t swap_total  = NAN;
301
302         fh = fopen ("/proc/meminfo", "r");
303         if (fh == NULL)
304         {
305                 char errbuf[1024];
306                 WARNING ("swap plugin: fopen (/proc/meminfo) failed: %s",
307                                 sstrerror (errno, errbuf, sizeof (errbuf)));
308                 return (-1);
309         }
310
311         while (fgets (buffer, sizeof (buffer), fh) != NULL)
312         {
313                 char *fields[8];
314                 int numfields;
315
316                 numfields = strsplit (buffer, fields, STATIC_ARRAY_SIZE (fields));
317                 if (numfields < 2)
318                         continue;
319
320                 if (strcasecmp (fields[0], "SwapTotal:") == 0)
321                         strtogauge (fields[1], &swap_total);
322                 else if (strcasecmp (fields[0], "SwapFree:") == 0)
323                         strtogauge (fields[1], &swap_free);
324                 else if (strcasecmp (fields[0], "SwapCached:") == 0)
325                         strtogauge (fields[1], &swap_cached);
326         }
327
328         fclose (fh);
329
330         if (isnan (swap_total) || isnan (swap_free))
331                 return (ENOENT);
332
333         /* Some systems, OpenVZ for example, don't provide SwapCached. */
334         if (isnan (swap_cached))
335                 swap_used = swap_total - swap_free;
336         else
337                 swap_used = swap_total - (swap_free + swap_cached);
338         assert (!isnan (swap_used));
339
340         if (swap_used < 0.0)
341                 return (EINVAL);
342
343         swap_submit_usage (NULL, swap_used, swap_free,
344                         isnan (swap_cached) ? NULL : "cached", swap_cached);
345         return (0);
346 } /* }}} int swap_read_combined */
347
348 static int swap_read_io (void) /* {{{ */
349 {
350         FILE *fh;
351         char buffer[1024];
352
353         _Bool old_kernel = 0;
354
355         uint8_t have_data = 0;
356         derive_t swap_in  = 0;
357         derive_t swap_out = 0;
358
359         fh = fopen ("/proc/vmstat", "r");
360         if (fh == NULL)
361         {
362                 /* /proc/vmstat does not exist in kernels <2.6 */
363                 fh = fopen ("/proc/stat", "r");
364                 if (fh == NULL)
365                 {
366                         char errbuf[1024];
367                         WARNING ("swap: fopen: %s",
368                                         sstrerror (errno, errbuf, sizeof (errbuf)));
369                         return (-1);
370                 }
371                 else
372                         old_kernel = 1;
373         }
374
375         while (fgets (buffer, sizeof (buffer), fh) != NULL)
376         {
377                 char *fields[8];
378                 int numfields;
379
380                 numfields = strsplit (buffer, fields, STATIC_ARRAY_SIZE (fields));
381
382                 if (!old_kernel)
383                 {
384                         if (numfields != 2)
385                                 continue;
386
387                         if (strcasecmp ("pswpin", fields[0]) == 0)
388                         {
389                                 strtoderive (fields[1], &swap_in);
390                                 have_data |= 0x01;
391                         }
392                         else if (strcasecmp ("pswpout", fields[0]) == 0)
393                         {
394                                 strtoderive (fields[1], &swap_out);
395                                 have_data |= 0x02;
396                         }
397                 }
398                 else /* if (old_kernel) */
399                 {
400                         if (numfields != 3)
401                                 continue;
402
403                         if (strcasecmp ("page", fields[0]) == 0)
404                         {
405                                 strtoderive (fields[1], &swap_in);
406                                 strtoderive (fields[2], &swap_out);
407                         }
408                 }
409         } /* while (fgets) */
410
411         fclose (fh);
412
413         if (have_data != 0x03)
414                 return (ENOENT);
415
416         if (report_bytes)
417         {
418                 swap_in = swap_in * pagesize;
419                 swap_out = swap_out * pagesize;
420         }
421
422         swap_submit_derive ("in",  swap_in);
423         swap_submit_derive ("out", swap_out);
424
425         return (0);
426 } /* }}} int swap_read_io */
427
428 static int swap_read (void) /* {{{ */
429 {
430         if (report_by_device)
431                 swap_read_separate ();
432         else
433                 swap_read_combined ();
434
435         swap_read_io ();
436
437         return (0);
438 } /* }}} int swap_read */
439 /* #endif KERNEL_LINUX */
440
441 /*
442  * Under Solaris, two mechanisms can be used to read swap statistics, swapctl
443  * and kstat. The former reads physical space used on a device, the latter
444  * reports the view from the virtual memory system. It was decided that the
445  * kstat-based information should be moved to the "vmem" plugin, but nobody
446  * with enough Solaris experience was available at that time to do this. The
447  * code below is still there for your reference but it won't be activated in
448  * *this* plugin again. --octo
449  */
450 #elif 0 && HAVE_LIBKSTAT
451 /* kstat-based read function */
452 static int swap_read_kstat (void) /* {{{ */
453 {
454         gauge_t swap_alloc;
455         gauge_t swap_resv;
456         gauge_t swap_avail;
457
458         struct anoninfo ai;
459
460         if (swapctl (SC_AINFO, &ai) == -1)
461         {
462                 char errbuf[1024];
463                 ERROR ("swap plugin: swapctl failed: %s",
464                                 sstrerror (errno, errbuf, sizeof (errbuf)));
465                 return (-1);
466         }
467
468         /*
469          * Calculations from:
470          * http://cvs.opensolaris.org/source/xref/on/usr/src/cmd/swap/swap.c
471          * Also see:
472          * http://www.itworld.com/Comp/2377/UIR980701perf/ (outdated?)
473          * /usr/include/vm/anon.h
474          *
475          * In short, swap -s shows: allocated + reserved = used, available
476          *
477          * However, Solaris does not allow to allocated/reserved more than the
478          * available swap (physical memory + disk swap), so the pedant may
479          * prefer: allocated + unallocated = reserved, available
480          *
481          * We map the above to: used + resv = n/a, free
482          *
483          * Does your brain hurt yet?  - Christophe Kalt
484          *
485          * Oh, and in case you wonder,
486          * swap_alloc = pagesize * ( ai.ani_max - ai.ani_free );
487          * can suffer from a 32bit overflow.
488          */
489         swap_alloc = (gauge_t) ((ai.ani_max - ai.ani_free) * pagesize);
490         swap_resv  = (gauge_t) ((ai.ani_resv + ai.ani_free - ai.ani_max) * pagesize);
491         swap_avail = (gauge_t) ((ai.ani_max - ai.ani_resv) * pagesize);
492
493         swap_submit_usage (NULL, swap_alloc, swap_avail, "reserved", swap_resv);
494         return (0);
495 } /* }}} int swap_read_kstat */
496 /* #endif 0 && HAVE_LIBKSTAT */
497
498 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS
499 /* swapctl-based read function */
500 static int swap_read (void) /* {{{ */
501 {
502         swaptbl_t *s;
503         char *s_paths;
504         int swap_num;
505         int status;
506         int i;
507
508         gauge_t avail = 0;
509         gauge_t total = 0;
510
511         swap_num = swapctl (SC_GETNSWP, NULL);
512         if (swap_num < 0)
513         {
514                 ERROR ("swap plugin: swapctl (SC_GETNSWP) failed with status %i.",
515                                 swap_num);
516                 return (-1);
517         }
518         else if (swap_num == 0)
519                 return (0);
520
521         /* Allocate and initialize the swaptbl_t structure */
522         s = (swaptbl_t *) smalloc (swap_num * sizeof (swapent_t) + sizeof (struct swaptable));
523         if (s == NULL)
524         {
525                 ERROR ("swap plugin: smalloc failed.");
526                 return (-1);
527         }
528
529         /* Memory to store the path names. We only use these paths when the
530          * separate option has been configured, but it's easier to just
531          * allocate enough memory in any case. */
532         s_paths = calloc (swap_num, PATH_MAX);
533         if (s_paths == NULL)
534         {
535                 ERROR ("swap plugin: malloc failed.");
536                 sfree (s);
537                 return (-1);
538         }
539         for (i = 0; i < swap_num; i++)
540                 s->swt_ent[i].ste_path = s_paths + (i * PATH_MAX);
541         s->swt_n = swap_num;
542
543         status = swapctl (SC_LIST, s);
544         if (status < 0)
545         {
546                 char errbuf[1024];
547                 ERROR ("swap plugin: swapctl (SC_LIST) failed: %s",
548                                 sstrerror (errno, errbuf, sizeof (errbuf)));
549                 sfree (s_paths);
550                 sfree (s);
551                 return (-1);
552         }
553         else if (swap_num < status)
554         {
555                 /* more elements returned than requested */
556                 ERROR ("swap plugin: I allocated memory for %i structure%s, "
557                                 "but swapctl(2) claims to have returned %i. "
558                                 "I'm confused and will give up.",
559                                 swap_num, (swap_num == 1) ? "" : "s",
560                                 status);
561                 sfree (s_paths);
562                 sfree (s);
563                 return (-1);
564         }
565         else if (swap_num > status)
566                 /* less elements returned than requested */
567                 swap_num = status;
568
569         for (i = 0; i < swap_num; i++)
570         {
571                 char path[PATH_MAX];
572                 gauge_t this_total;
573                 gauge_t this_avail;
574
575                 if ((s->swt_ent[i].ste_flags & ST_INDEL) != 0)
576                         continue;
577
578                 this_total = (gauge_t) (s->swt_ent[i].ste_pages * pagesize);
579                 this_avail = (gauge_t) (s->swt_ent[i].ste_free  * pagesize);
580
581                 /* Shortcut for the "combined" setting (default) */
582                 if (!report_by_device)
583                 {
584                         avail += this_avail;
585                         total += this_total;
586                         continue;
587                 }
588
589                 sstrncpy (path, s->swt_ent[i].ste_path, sizeof (path));
590                 escape_slashes (path, sizeof (path));
591
592                 swap_submit_usage (path, this_total - this_avail, this_avail,
593                                 NULL, NAN);
594         } /* for (swap_num) */
595
596         if (total < avail)
597         {
598                 ERROR ("swap plugin: Total swap space (%g) is less than free swap space (%g).",
599                                 total, avail);
600                 sfree (s_paths);
601                 sfree (s);
602                 return (-1);
603         }
604
605         /* If the "separate" option was specified (report_by_device == 1), all
606          * values have already been dispatched from within the loop. */
607         if (!report_by_device)
608                 swap_submit_usage (NULL, total - avail, avail, NULL, NAN);
609
610         sfree (s_paths);
611         sfree (s);
612         return (0);
613 } /* }}} int swap_read */
614 /* #endif HAVE_SWAPCTL && HAVE_SWAPCTL_TWO_ARGS */
615
616 #elif HAVE_SWAPCTL && HAVE_SWAPCTL_THREE_ARGS
617 static int swap_read (void) /* {{{ */
618 {
619         struct swapent *swap_entries;
620         int swap_num;
621         int status;
622         int i;
623
624         gauge_t used  = 0;
625         gauge_t total = 0;
626
627         swap_num = swapctl (SWAP_NSWAP, NULL, 0);
628         if (swap_num < 0)
629         {
630                 ERROR ("swap plugin: swapctl (SWAP_NSWAP) failed with status %i.",
631                                 swap_num);
632                 return (-1);
633         }
634         else if (swap_num == 0)
635                 return (0);
636
637         swap_entries = calloc (swap_num, sizeof (*swap_entries));
638         if (swap_entries == NULL)
639         {
640                 ERROR ("swap plugin: calloc failed.");
641                 return (-1);
642         }
643
644         status = swapctl (SWAP_STATS, swap_entries, swap_num);
645         if (status != swap_num)
646         {
647                 ERROR ("swap plugin: swapctl (SWAP_STATS) failed with status %i.",
648                                 status);
649                 sfree (swap_entries);
650                 return (-1);
651         }
652
653 #if defined(DEV_BSIZE) && (DEV_BSIZE > 0)
654 # define C_SWAP_BLOCK_SIZE ((gauge_t) DEV_BSIZE)
655 #else
656 # define C_SWAP_BLOCK_SIZE 512.0
657 #endif
658
659         /* TODO: Report per-device stats. The path name is available from
660          * swap_entries[i].se_path */
661         for (i = 0; i < swap_num; i++)
662         {
663                 if ((swap_entries[i].se_flags & SWF_ENABLE) == 0)
664                         continue;
665
666                 used  += ((gauge_t) swap_entries[i].se_inuse) * C_SWAP_BLOCK_SIZE;
667                 total += ((gauge_t) swap_entries[i].se_nblks) * C_SWAP_BLOCK_SIZE;
668         }
669
670         if (total < used)
671         {
672                 ERROR ("swap plugin: Total swap space (%g) is less than used swap space (%g).",
673                                 total, used);
674                 return (-1);
675         }
676
677         swap_submit_usage (NULL, used, total - used, NULL, NAN);
678
679         sfree (swap_entries);
680         return (0);
681 } /* }}} int swap_read */
682 /* #endif HAVE_SWAPCTL && HAVE_SWAPCTL_THREE_ARGS */
683
684 #elif defined(VM_SWAPUSAGE)
685 static int swap_read (void) /* {{{ */
686 {
687         int              mib[3];
688         size_t           mib_len;
689         struct xsw_usage sw_usage;
690         size_t           sw_usage_len;
691
692         mib_len = 2;
693         mib[0]  = CTL_VM;
694         mib[1]  = VM_SWAPUSAGE;
695
696         sw_usage_len = sizeof (struct xsw_usage);
697
698         if (sysctl (mib, mib_len, &sw_usage, &sw_usage_len, NULL, 0) != 0)
699                 return (-1);
700
701         /* The returned values are bytes. */
702         swap_submit_usage (NULL,
703                         (gauge_t) sw_usage.xsu_used, (gauge_t) sw_usage.xsu_avail,
704                         NULL, NAN);
705
706         return (0);
707 } /* }}} int swap_read */
708 /* #endif VM_SWAPUSAGE */
709
710 #elif HAVE_LIBKVM_GETSWAPINFO
711 static int swap_read (void) /* {{{ */
712 {
713         struct kvm_swap data_s;
714         int             status;
715
716         gauge_t used;
717         gauge_t total;
718
719         if (kvm_obj == NULL)
720                 return (-1);
721
722         /* only one structure => only get the grand total, no details */
723         status = kvm_getswapinfo (kvm_obj, &data_s, 1, 0);
724         if (status == -1)
725                 return (-1);
726
727         total = (gauge_t) data_s.ksw_total;
728         used  = (gauge_t) data_s.ksw_used;
729
730         total *= (gauge_t) kvm_pagesize;
731         used  *= (gauge_t) kvm_pagesize;
732
733         swap_submit_usage (NULL, used, total - used, NULL, NAN);
734
735         return (0);
736 } /* }}} int swap_read */
737 /* #endif HAVE_LIBKVM_GETSWAPINFO */
738
739 #elif HAVE_LIBSTATGRAB
740 static int swap_read (void) /* {{{ */
741 {
742         sg_swap_stats *swap;
743
744         swap = sg_get_swap_stats ();
745         if (swap == NULL)
746                 return (-1);
747
748         swap_submit_usage (NULL, (gauge_t) swap->used, (gauge_t) swap->free,
749                         NULL, NAN);
750
751         return (0);
752 } /* }}} int swap_read */
753 /* #endif  HAVE_LIBSTATGRAB */
754
755 #elif HAVE_PERFSTAT
756 static int swap_read (void) /* {{{ */
757 {
758         perfstat_memory_total_t pmemory;
759         int status;
760
761         gauge_t total;
762         gauge_t free;
763         gauge_t reserved;
764
765         memset (&pmemory, 0, sizeof (pmemory));
766         status = perfstat_memory_total (NULL, &pmemory, sizeof(perfstat_memory_total_t), 1);
767         if (status < 0)
768         {
769                 char errbuf[1024];
770                 WARNING ("swap plugin: perfstat_memory_total failed: %s",
771                         sstrerror (errno, errbuf, sizeof (errbuf)));
772                 return (-1);
773         }
774
775         total    = (gauge_t) (pmemory.pgsp_total * pagesize);
776         free     = (gauge_t) (pmemory.pgsp_free * pagesize);
777         reserved = (gauge_t) (pmemory.pgsp_rsvd * pagesize);
778
779         swap_submit_usage (NULL, total - free, free, "reserved", reserved);
780         swap_submit_derive ("in",  (derive_t) pmemory.pgspins * pagesize);
781         swap_submit_derive ("out", (derive_t) pmemory.pgspouts * pagesize);
782
783         return (0);
784 } /* }}} int swap_read */
785 #endif /* HAVE_PERFSTAT */
786
787 void module_register (void)
788 {
789         plugin_register_complex_config ("swap", swap_config);
790         plugin_register_init ("swap", swap_init);
791         plugin_register_read ("swap", swap_read);
792 } /* void module_register */
793
794 /* vim: set fdm=marker : */