2 * collectd - src/disk.c
3 * Copyright (C) 2005-2012 Florian octo Forster
4 * Copyright (C) 2009 Manuel Sanmartin
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 * Florian octo Forster <octo at collectd.org>
27 #include "utils_ignorelist.h"
29 #if HAVE_MACH_MACH_TYPES_H
30 # include <mach/mach_types.h>
32 #if HAVE_MACH_MACH_INIT_H
33 # include <mach/mach_init.h>
35 #if HAVE_MACH_MACH_ERROR_H
36 # include <mach/mach_error.h>
38 #if HAVE_MACH_MACH_PORT_H
39 # include <mach/mach_port.h>
41 #if HAVE_COREFOUNDATION_COREFOUNDATION_H
42 # include <CoreFoundation/CoreFoundation.h>
44 #if HAVE_IOKIT_IOKITLIB_H
45 # include <IOKit/IOKitLib.h>
47 #if HAVE_IOKIT_IOTYPES_H
48 # include <IOKit/IOTypes.h>
50 #if HAVE_IOKIT_STORAGE_IOBLOCKSTORAGEDRIVER_H
51 # include <IOKit/storage/IOBlockStorageDriver.h>
53 #if HAVE_IOKIT_IOBSD_H
54 # include <IOKit/IOBSD.h>
61 # define UINT_MAX 4294967295U
65 # include <statgrab.h>
69 # ifndef _AIXVERSION_610
70 # include <sys/systemcfg.h>
72 # include <sys/protosw.h>
73 # include <libperfstat.h>
76 #if HAVE_IOKIT_IOKITLIB_H
77 static mach_port_t io_master_port = MACH_PORT_NULL;
78 /* This defaults to false for backwards compatibility. Please fix in the next
80 static _Bool use_bsd_name = 0;
81 /* #endif HAVE_IOKIT_IOKITLIB_H */
84 typedef struct diskstats
88 /* This overflows in roughly 1361 years */
89 unsigned int poll_count;
91 derive_t read_sectors;
92 derive_t write_sectors;
102 derive_t avg_read_time;
103 derive_t avg_write_time;
105 struct diskstats *next;
108 static diskstats_t *disklist;
109 /* #endif KERNEL_LINUX */
112 #define MAX_NUMDISK 1024
113 extern kstat_ctl_t *kc;
114 static kstat_t *ksp[MAX_NUMDISK];
115 static int numdisk = 0;
116 /* #endif HAVE_LIBKSTAT */
118 #elif defined(HAVE_LIBSTATGRAB)
119 /* #endif HAVE_LIBKSTATGRAB */
122 static perfstat_disk_t * stat_disk;
125 /* #endif HAVE_PERFSTAT */
128 # error "No applicable input method."
134 static char *conf_udev_name_attr = NULL;
135 static struct udev *handle_udev;
138 static const char *config_keys[] =
145 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
147 static ignorelist_t *ignorelist = NULL;
149 static int disk_config (const char *key, const char *value)
151 if (ignorelist == NULL)
152 ignorelist = ignorelist_create (/* invert = */ 1);
153 if (ignorelist == NULL)
156 if (strcasecmp ("Disk", key) == 0)
158 ignorelist_add (ignorelist, value);
160 else if (strcasecmp ("IgnoreSelected", key) == 0)
165 ignorelist_set_invert (ignorelist, invert);
167 else if (strcasecmp ("UseBSDName", key) == 0)
169 #if HAVE_IOKIT_IOKITLIB_H
170 use_bsd_name = IS_TRUE (value) ? 1 : 0;
172 WARNING ("disk plugin: The \"UseBSDName\" option is only supported "
173 "on Mach / Mac OS X and will be ignored.");
176 else if (strcasecmp ("UdevNameAttr", key) == 0)
179 if (conf_udev_name_attr != NULL)
181 free (conf_udev_name_attr);
182 conf_udev_name_attr = NULL;
184 if ((conf_udev_name_attr = strdup (value)) == NULL)
187 WARNING ("disk plugin: The \"UdevNameAttr\" option is only supported "
188 "if collectd is built with libudev support");
197 } /* int disk_config */
199 static int disk_init (void)
201 #if HAVE_IOKIT_IOKITLIB_H
202 kern_return_t status;
204 if (io_master_port != MACH_PORT_NULL)
206 mach_port_deallocate (mach_task_self (),
208 io_master_port = MACH_PORT_NULL;
211 status = IOMasterPort (MACH_PORT_NULL, &io_master_port);
212 if (status != kIOReturnSuccess)
214 ERROR ("IOMasterPort failed: %s",
215 mach_error_string (status));
216 io_master_port = MACH_PORT_NULL;
219 /* #endif HAVE_IOKIT_IOKITLIB_H */
223 /* #endif KERNEL_LINUX */
233 for (numdisk = 0, ksp_chain = kc->kc_chain;
234 (numdisk < MAX_NUMDISK) && (ksp_chain != NULL);
235 ksp_chain = ksp_chain->ks_next)
237 if (strncmp (ksp_chain->ks_class, "disk", 4)
238 && strncmp (ksp_chain->ks_class, "partition", 9))
240 if (ksp_chain->ks_type != KSTAT_TYPE_IO)
242 ksp[numdisk++] = ksp_chain;
244 #endif /* HAVE_LIBKSTAT */
247 } /* int disk_init */
249 static void disk_submit (const char *plugin_instance,
251 derive_t read, derive_t write)
254 value_list_t vl = VALUE_LIST_INIT;
256 /* Both `ignorelist' and `plugin_instance' may be NULL. */
257 if (ignorelist_match (ignorelist, plugin_instance) != 0)
260 values[0].derive = read;
261 values[1].derive = write;
265 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
266 sstrncpy (vl.plugin, "disk", sizeof (vl.plugin));
267 sstrncpy (vl.plugin_instance, plugin_instance,
268 sizeof (vl.plugin_instance));
269 sstrncpy (vl.type, type, sizeof (vl.type));
271 plugin_dispatch_values (&vl);
272 } /* void disk_submit */
275 static void submit_in_progress (char const *disk_name, gauge_t in_progress)
278 value_list_t vl = VALUE_LIST_INIT;
280 if (ignorelist_match (ignorelist, disk_name) != 0)
283 v.gauge = in_progress;
287 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
288 sstrncpy (vl.plugin, "disk", sizeof (vl.plugin));
289 sstrncpy (vl.plugin_instance, disk_name, sizeof (vl.plugin_instance));
290 sstrncpy (vl.type, "pending_operations", sizeof (vl.type));
292 plugin_dispatch_values (&vl);
295 static void submit_io_time (char const *plugin_instance, derive_t io_time, derive_t weighted_time)
298 value_list_t vl = VALUE_LIST_INIT;
300 if (ignorelist_match (ignorelist, plugin_instance) != 0)
303 values[0].derive = io_time;
304 values[1].derive = weighted_time;
308 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
309 sstrncpy (vl.plugin, "disk", sizeof (vl.plugin));
310 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
311 sstrncpy (vl.type, "disk_io_time", sizeof (vl.type));
313 plugin_dispatch_values (&vl);
317 static counter_t disk_calc_time_incr (counter_t delta_time, counter_t delta_ops)
319 double interval = CDTIME_T_TO_DOUBLE (plugin_get_interval ());
320 double avg_time = ((double) delta_time) / ((double) delta_ops);
321 double avg_time_incr = interval * avg_time;
323 return ((counter_t) (avg_time_incr + .5));
329 * Attempt to provide an rename disk instance from an assigned udev attribute.
331 * On success, it returns a strduped char* to the desired attribute value.
332 * Otherwise it returns NULL.
335 static char *disk_udev_attr_name (struct udev *udev, char *disk_name, const char *attr)
337 struct udev_device *dev;
341 dev = udev_device_new_from_subsystem_sysname (udev, "block", disk_name);
344 prop = udev_device_get_property_value (dev, attr);
346 output = strdup (prop);
347 DEBUG ("disk plugin: renaming %s => %s", disk_name, output);
349 udev_device_unref (dev);
355 #if HAVE_IOKIT_IOKITLIB_H
356 static signed long long dict_get_value (CFDictionaryRef dict, const char *key)
358 signed long long val_int;
362 /* `key_obj' needs to be released. */
363 key_obj = CFStringCreateWithCString (kCFAllocatorDefault, key,
364 kCFStringEncodingASCII);
367 DEBUG ("CFStringCreateWithCString (%s) failed.", key);
371 /* get => we don't need to release (== free) the object */
372 val_obj = (CFNumberRef) CFDictionaryGetValue (dict, key_obj);
378 DEBUG ("CFDictionaryGetValue (%s) failed.", key);
382 if (!CFNumberGetValue (val_obj, kCFNumberSInt64Type, &val_int))
384 DEBUG ("CFNumberGetValue (%s) failed.", key);
390 #endif /* HAVE_IOKIT_IOKITLIB_H */
392 static int disk_read (void)
394 #if HAVE_IOKIT_IOKITLIB_H
395 io_registry_entry_t disk;
396 io_registry_entry_t disk_child;
397 io_iterator_t disk_list;
398 CFMutableDictionaryRef props_dict, child_dict;
399 CFDictionaryRef stats_dict;
400 CFStringRef tmp_cf_string_ref;
401 kern_return_t status;
403 signed long long read_ops, read_byt, read_tme;
404 signed long long write_ops, write_byt, write_tme;
406 int disk_major, disk_minor;
407 char disk_name[DATA_MAX_NAME_LEN];
408 char child_disk_name_bsd[DATA_MAX_NAME_LEN], props_disk_name_bsd[DATA_MAX_NAME_LEN];
410 /* Get the list of all disk objects. */
411 if (IOServiceGetMatchingServices (io_master_port, IOServiceMatching (kIOBlockStorageDriverClass), &disk_list) != kIOReturnSuccess) {
412 ERROR ("disk plugin: IOServiceGetMatchingServices failed.");
416 while ((disk = IOIteratorNext (disk_list)) != 0) {
421 /* get child of disk entry and corresponding property dictionary */
422 if ((status = IORegistryEntryGetChildEntry (disk, kIOServicePlane, &disk_child)) != kIOReturnSuccess) {
423 /* This fails for example for DVD/CD drives, which we want to ignore anyway */
424 DEBUG ("IORegistryEntryGetChildEntry (disk) failed: 0x%08x", status);
425 IOObjectRelease (disk);
428 if (IORegistryEntryCreateCFProperties (disk_child, (CFMutableDictionaryRef *) &child_dict, kCFAllocatorDefault, kNilOptions) != kIOReturnSuccess || child_dict == NULL) {
429 ERROR ("disk plugin: IORegistryEntryCreateCFProperties (disk_child) failed.");
430 IOObjectRelease (disk_child);
431 IOObjectRelease (disk);
435 /* extract name and major/minor numbers */
436 memset (child_disk_name_bsd, 0, sizeof (child_disk_name_bsd));
437 tmp_cf_string_ref = (CFStringRef) CFDictionaryGetValue (child_dict, CFSTR(kIOBSDNameKey));
438 if (tmp_cf_string_ref) {
439 assert (CFGetTypeID (tmp_cf_string_ref) == CFStringGetTypeID ());
440 CFStringGetCString (tmp_cf_string_ref, child_disk_name_bsd, sizeof (child_disk_name_bsd), kCFStringEncodingUTF8);
442 disk_major = (int) dict_get_value (child_dict, kIOBSDMajorKey);
443 disk_minor = (int) dict_get_value (child_dict, kIOBSDMinorKey);
444 DEBUG ("disk plugin: child_disk_name_bsd=\"%s\" major=%d minor=%d", child_disk_name_bsd, disk_major, disk_minor);
445 CFRelease (child_dict);
446 IOObjectRelease (disk_child);
448 /* get property dictionary of the disk entry itself */
449 if (IORegistryEntryCreateCFProperties (disk, (CFMutableDictionaryRef *) &props_dict, kCFAllocatorDefault, kNilOptions) != kIOReturnSuccess || props_dict == NULL) {
450 ERROR ("disk-plugin: IORegistryEntryCreateCFProperties failed.");
451 IOObjectRelease (disk);
455 /* extract name and stats dictionary */
456 memset (props_disk_name_bsd, 0, sizeof (props_disk_name_bsd));
457 tmp_cf_string_ref = (CFStringRef) CFDictionaryGetValue (props_dict, CFSTR(kIOBSDNameKey));
458 if (tmp_cf_string_ref) {
459 assert (CFGetTypeID (tmp_cf_string_ref) == CFStringGetTypeID ());
460 CFStringGetCString (tmp_cf_string_ref, props_disk_name_bsd, sizeof (props_disk_name_bsd), kCFStringEncodingUTF8);
462 stats_dict = (CFDictionaryRef) CFDictionaryGetValue (props_dict, CFSTR (kIOBlockStorageDriverStatisticsKey));
463 if (stats_dict == NULL) {
464 ERROR ("disk plugin: CFDictionaryGetValue (%s) failed.", kIOBlockStorageDriverStatisticsKey);
465 CFRelease (props_dict);
466 IOObjectRelease (disk);
469 DEBUG ("disk plugin: props_disk_name_bsd=\"%s\"", props_disk_name_bsd);
473 if (child_disk_name_bsd[0] != 0)
474 sstrncpy (disk_name, child_disk_name_bsd, sizeof (disk_name));
475 else if (props_disk_name_bsd[0] != 0)
476 sstrncpy (disk_name, props_disk_name_bsd, sizeof (disk_name));
478 ERROR ("disk plugin: can't find bsd disk name.");
479 ssnprintf (disk_name, sizeof (disk_name), "%i-%i", disk_major, disk_minor);
483 ssnprintf (disk_name, sizeof (disk_name), "%i-%i", disk_major, disk_minor);
485 /* extract the stats */
486 read_ops = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsReadsKey);
487 read_byt = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsBytesReadKey);
488 read_tme = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsTotalReadTimeKey);
489 write_ops = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsWritesKey);
490 write_byt = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsBytesWrittenKey);
491 write_tme = dict_get_value (stats_dict, kIOBlockStorageDriverStatisticsTotalWriteTimeKey);
492 CFRelease (props_dict);
493 IOObjectRelease (disk);
496 DEBUG ("disk plugin: disk_name = \"%s\"", disk_name);
497 if ((read_byt != -1LL) || (write_byt != -1LL))
498 disk_submit (disk_name, "disk_octets", read_byt, write_byt);
499 if ((read_ops != -1LL) || (write_ops != -1LL))
500 disk_submit (disk_name, "disk_ops", read_ops, write_ops);
501 if ((read_tme != -1LL) || (write_tme != -1LL))
502 disk_submit (disk_name, "disk_time", read_tme / 1000, write_tme / 1000);
505 IOObjectRelease (disk_list);
506 /* #endif HAVE_IOKIT_IOKITLIB_H */
518 derive_t read_sectors = 0;
519 derive_t write_sectors = 0;
521 derive_t read_ops = 0;
522 derive_t read_merged = 0;
523 derive_t read_time = 0;
524 derive_t write_ops = 0;
525 derive_t write_merged = 0;
526 derive_t write_time = 0;
527 gauge_t in_progress = NAN;
528 derive_t io_time = 0;
529 derive_t weighted_time = 0;
532 diskstats_t *ds, *pre_ds;
534 if ((fh = fopen ("/proc/diskstats", "r")) == NULL)
536 fh = fopen ("/proc/partitions", "r");
539 ERROR ("disk plugin: fopen (/proc/{diskstats,partitions}) failed.");
543 /* Kernel is 2.4.* */
548 handle_udev = udev_new();
551 while (fgets (buffer, sizeof (buffer), fh) != NULL)
557 numfields = strsplit (buffer, fields, 32);
559 if ((numfields != (14 + fieldshift)) && (numfields != 7))
562 minor = atoll (fields[1]);
564 disk_name = fields[2 + fieldshift];
566 for (ds = disklist, pre_ds = disklist; ds != NULL; pre_ds = ds, ds = ds->next)
567 if (strcmp (disk_name, ds->name) == 0)
572 if ((ds = (diskstats_t *) calloc (1, sizeof (diskstats_t))) == NULL)
575 if ((ds->name = strdup (disk_name)) == NULL)
590 /* Kernel 2.6, Partition */
591 read_ops = atoll (fields[3]);
592 read_sectors = atoll (fields[4]);
593 write_ops = atoll (fields[5]);
594 write_sectors = atoll (fields[6]);
596 else if (numfields == (14 + fieldshift))
598 read_ops = atoll (fields[3 + fieldshift]);
599 write_ops = atoll (fields[7 + fieldshift]);
601 read_sectors = atoll (fields[5 + fieldshift]);
602 write_sectors = atoll (fields[9 + fieldshift]);
604 if ((fieldshift == 0) || (minor == 0))
607 read_merged = atoll (fields[4 + fieldshift]);
608 read_time = atoll (fields[6 + fieldshift]);
609 write_merged = atoll (fields[8 + fieldshift]);
610 write_time = atoll (fields[10+ fieldshift]);
612 in_progress = atof (fields[11 + fieldshift]);
614 io_time = atof (fields[12 + fieldshift]);
615 weighted_time = atof (fields[13 + fieldshift]);
620 DEBUG ("numfields = %i; => unknown file format.", numfields);
625 derive_t diff_read_sectors;
626 derive_t diff_write_sectors;
628 /* If the counter wraps around, it's only 32 bits.. */
629 if (read_sectors < ds->read_sectors)
630 diff_read_sectors = 1 + read_sectors
631 + (UINT_MAX - ds->read_sectors);
633 diff_read_sectors = read_sectors - ds->read_sectors;
634 if (write_sectors < ds->write_sectors)
635 diff_write_sectors = 1 + write_sectors
636 + (UINT_MAX - ds->write_sectors);
638 diff_write_sectors = write_sectors - ds->write_sectors;
640 ds->read_bytes += 512 * diff_read_sectors;
641 ds->write_bytes += 512 * diff_write_sectors;
642 ds->read_sectors = read_sectors;
643 ds->write_sectors = write_sectors;
646 /* Calculate the average time an io-op needs to complete */
649 derive_t diff_read_ops;
650 derive_t diff_write_ops;
651 derive_t diff_read_time;
652 derive_t diff_write_time;
654 if (read_ops < ds->read_ops)
655 diff_read_ops = 1 + read_ops
656 + (UINT_MAX - ds->read_ops);
658 diff_read_ops = read_ops - ds->read_ops;
659 DEBUG ("disk plugin: disk_name = %s; read_ops = %"PRIi64"; "
660 "ds->read_ops = %"PRIi64"; diff_read_ops = %"PRIi64";",
662 read_ops, ds->read_ops, diff_read_ops);
664 if (write_ops < ds->write_ops)
665 diff_write_ops = 1 + write_ops
666 + (UINT_MAX - ds->write_ops);
668 diff_write_ops = write_ops - ds->write_ops;
670 if (read_time < ds->read_time)
671 diff_read_time = 1 + read_time
672 + (UINT_MAX - ds->read_time);
674 diff_read_time = read_time - ds->read_time;
676 if (write_time < ds->write_time)
677 diff_write_time = 1 + write_time
678 + (UINT_MAX - ds->write_time);
680 diff_write_time = write_time - ds->write_time;
682 if (diff_read_ops != 0)
683 ds->avg_read_time += disk_calc_time_incr (
684 diff_read_time, diff_read_ops);
685 if (diff_write_ops != 0)
686 ds->avg_write_time += disk_calc_time_incr (
687 diff_write_time, diff_write_ops);
689 ds->read_ops = read_ops;
690 ds->read_time = read_time;
691 ds->write_ops = write_ops;
692 ds->write_time = write_time;
695 /* Don't write to the RRDs if we've just started.. */
697 if (ds->poll_count <= 2)
699 DEBUG ("disk plugin: (ds->poll_count = %i) <= "
700 "(min_poll_count = 2); => Not writing.",
705 if ((read_ops == 0) && (write_ops == 0))
707 DEBUG ("disk plugin: ((read_ops == 0) && "
708 "(write_ops == 0)); => Not writing.");
712 output_name = disk_name;
715 alt_name = disk_udev_attr_name (handle_udev, disk_name,
716 conf_udev_name_attr);
720 if (alt_name != NULL)
721 output_name = alt_name;
723 if ((ds->read_bytes != 0) || (ds->write_bytes != 0))
724 disk_submit (output_name, "disk_octets",
725 ds->read_bytes, ds->write_bytes);
727 if ((ds->read_ops != 0) || (ds->write_ops != 0))
728 disk_submit (output_name, "disk_ops",
729 read_ops, write_ops);
731 if ((ds->avg_read_time != 0) || (ds->avg_write_time != 0))
732 disk_submit (output_name, "disk_time",
733 ds->avg_read_time, ds->avg_write_time);
737 disk_submit (output_name, "disk_merged",
738 read_merged, write_merged);
739 submit_in_progress (output_name, in_progress);
740 submit_io_time (output_name, io_time, weighted_time);
743 /* release udev-based alternate name, if allocated */
745 } /* while (fgets (buffer, sizeof (buffer), fh) != NULL) */
748 udev_unref(handle_udev);
752 /* #endif defined(KERNEL_LINUX) */
755 # if HAVE_KSTAT_IO_T_WRITES && HAVE_KSTAT_IO_T_NWRITES && HAVE_KSTAT_IO_T_WTIME
756 # define KIO_ROCTETS reads
757 # define KIO_WOCTETS writes
758 # define KIO_ROPS nreads
759 # define KIO_WOPS nwrites
760 # define KIO_RTIME rtime
761 # define KIO_WTIME wtime
762 # elif HAVE_KSTAT_IO_T_NWRITTEN && HAVE_KSTAT_IO_T_WRITES && HAVE_KSTAT_IO_T_WTIME
763 # define KIO_ROCTETS nread
764 # define KIO_WOCTETS nwritten
765 # define KIO_ROPS reads
766 # define KIO_WOPS writes
767 # define KIO_RTIME rtime
768 # define KIO_WTIME wtime
770 # error "kstat_io_t does not have the required members"
772 static kstat_io_t kio;
778 for (i = 0; i < numdisk; i++)
780 if (kstat_read (kc, ksp[i], &kio) == -1)
783 if (strncmp (ksp[i]->ks_class, "disk", 4) == 0)
785 disk_submit (ksp[i]->ks_name, "disk_octets",
786 kio.KIO_ROCTETS, kio.KIO_WOCTETS);
787 disk_submit (ksp[i]->ks_name, "disk_ops",
788 kio.KIO_ROPS, kio.KIO_WOPS);
789 /* FIXME: Convert this to microseconds if necessary */
790 disk_submit (ksp[i]->ks_name, "disk_time",
791 kio.KIO_RTIME, kio.KIO_WTIME);
793 else if (strncmp (ksp[i]->ks_class, "partition", 9) == 0)
795 disk_submit (ksp[i]->ks_name, "disk_octets",
796 kio.KIO_ROCTETS, kio.KIO_WOCTETS);
797 disk_submit (ksp[i]->ks_name, "disk_ops",
798 kio.KIO_ROPS, kio.KIO_WOPS);
801 /* #endif defined(HAVE_LIBKSTAT) */
803 #elif defined(HAVE_LIBSTATGRAB)
804 sg_disk_io_stats *ds;
805 # if HAVE_LIBSTATGRAB_0_90
811 char name[DATA_MAX_NAME_LEN];
813 if ((ds = sg_get_disk_io_stats(&disks)) == NULL)
816 for (counter=0; counter < disks; counter++) {
817 strncpy(name, ds->disk_name, sizeof(name));
818 name[sizeof(name)-1] = '\0'; /* strncpy doesn't terminate longer strings */
819 disk_submit (name, "disk_octets", ds->read_bytes, ds->write_bytes);
822 /* #endif defined(HAVE_LIBSTATGRAB) */
824 #elif defined(HAVE_PERFSTAT)
825 derive_t read_sectors;
826 derive_t write_sectors;
831 perfstat_id_t firstpath;
835 if ((numdisk = perfstat_disk(NULL, NULL, sizeof(perfstat_disk_t), 0)) < 0)
838 WARNING ("disk plugin: perfstat_disk: %s",
839 sstrerror (errno, errbuf, sizeof (errbuf)));
843 if (numdisk != pnumdisk || stat_disk==NULL) {
846 stat_disk = (perfstat_disk_t *)calloc(numdisk, sizeof(perfstat_disk_t));
850 firstpath.name[0]='\0';
851 if ((rnumdisk = perfstat_disk(&firstpath, stat_disk, sizeof(perfstat_disk_t), numdisk)) < 0)
854 WARNING ("disk plugin: perfstat_disk : %s",
855 sstrerror (errno, errbuf, sizeof (errbuf)));
859 for (i = 0; i < rnumdisk; i++)
861 read_sectors = stat_disk[i].rblks*stat_disk[i].bsize;
862 write_sectors = stat_disk[i].wblks*stat_disk[i].bsize;
863 disk_submit (stat_disk[i].name, "disk_octets", read_sectors, write_sectors);
865 read_ops = stat_disk[i].xrate;
866 write_ops = stat_disk[i].xfers - stat_disk[i].xrate;
867 disk_submit (stat_disk[i].name, "disk_ops", read_ops, write_ops);
869 read_time = stat_disk[i].rserv;
870 read_time *= ((double)(_system_configuration.Xint)/(double)(_system_configuration.Xfrac)) / 1000000.0;
871 write_time = stat_disk[i].wserv;
872 write_time *= ((double)(_system_configuration.Xint)/(double)(_system_configuration.Xfrac)) / 1000000.0;
873 disk_submit (stat_disk[i].name, "disk_time", read_time, write_time);
875 #endif /* defined(HAVE_PERFSTAT) */
878 } /* int disk_read */
880 void module_register (void)
882 plugin_register_config ("disk", disk_config,
883 config_keys, config_keys_num);
884 plugin_register_init ("disk", disk_init);
885 plugin_register_read ("disk", disk_read);
886 } /* void module_register */