2 * collectd - src/netapp.c
3 * Copyright (C) 2009 Sven Trenkel
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Sven Trenkel <collectd at semidefinite.de>
29 #include "utils_ignorelist.h"
31 #include <netapp_api.h>
32 #include <netapp_errno.h>
34 #define HAS_ALL_FLAGS(has,needs) (((has) & (needs)) == (needs))
36 typedef struct host_config_s host_config_t;
37 typedef void service_handler_t(host_config_t *host, na_elem_t *result, void *data);
44 typedef struct cna_interval_s cna_interval_t;
46 /*! Data types for WAFL statistics {{{
48 * \brief Persistent data for WAFL performance counters. (a.k.a. cache performance)
50 * The cache counters use old counter values to calculate a hit ratio for each
51 * counter. The "cfg_wafl_t" struct therefore contains old counter values along
52 * with flags, which are set if the counter is valid.
54 * The function "cna_handle_wafl_data" will fill a new structure of this kind
55 * with new values, then pass both, new and old data, to "submit_wafl_data".
56 * That function calculates the hit ratios, submits the calculated values and
57 * updates the old counter values for the next iteration.
59 #define CFG_WAFL_NAME_CACHE 0x0001
60 #define CFG_WAFL_DIR_CACHE 0x0002
61 #define CFG_WAFL_BUF_CACHE 0x0004
62 #define CFG_WAFL_INODE_CACHE 0x0008
63 #define CFG_WAFL_ALL 0x000F
64 #define HAVE_WAFL_NAME_CACHE_HIT 0x0100
65 #define HAVE_WAFL_NAME_CACHE_MISS 0x0200
66 #define HAVE_WAFL_NAME_CACHE (HAVE_WAFL_NAME_CACHE_HIT | HAVE_WAFL_NAME_CACHE_MISS)
67 #define HAVE_WAFL_FIND_DIR_HIT 0x0400
68 #define HAVE_WAFL_FIND_DIR_MISS 0x0800
69 #define HAVE_WAFL_FIND_DIR (HAVE_WAFL_FIND_DIR_HIT | HAVE_WAFL_FIND_DIR_MISS)
70 #define HAVE_WAFL_BUF_HASH_HIT 0x1000
71 #define HAVE_WAFL_BUF_HASH_MISS 0x2000
72 #define HAVE_WAFL_BUF_HASH (HAVE_WAFL_BUF_HASH_HIT | HAVE_WAFL_BUF_HASH_MISS)
73 #define HAVE_WAFL_INODE_CACHE_HIT 0x4000
74 #define HAVE_WAFL_INODE_CACHE_MISS 0x8000
75 #define HAVE_WAFL_INODE_CACHE (HAVE_WAFL_INODE_CACHE_HIT | HAVE_WAFL_INODE_CACHE_MISS)
76 #define HAVE_WAFL_ALL 0xff00
79 cna_interval_t interval;
83 uint64_t name_cache_hit;
84 uint64_t name_cache_miss;
85 uint64_t find_dir_hit;
86 uint64_t find_dir_miss;
87 uint64_t buf_hash_hit;
88 uint64_t buf_hash_miss;
89 uint64_t inode_cache_hit;
90 uint64_t inode_cache_miss;
94 /*! Data types for disk statistics {{{
96 * \brief A disk in the NetApp.
98 * A disk doesn't have any more information than its name at the moment.
99 * The name includes the "disk_" prefix.
101 #define HAVE_DISK_BUSY 0x10
102 #define HAVE_DISK_BASE 0x20
103 #define HAVE_DISK_ALL 0x30
104 typedef struct disk_s {
109 uint64_t base_for_disk_busy;
110 double disk_busy_percent;
114 #define CFG_DISK_BUSIEST 0x01
115 #define CFG_DISK_ALL 0x01
118 cna_interval_t interval;
124 /*! Data types for volume performance statistics {{{
126 * \brief Persistent data for volume performance data.
128 * The code below uses the difference of the operations and latency counters to
129 * calculate an average per-operation latency. For this, old counters need to
130 * be stored in the "data_volume_perf_t" structure. The byte-counters are just
131 * kept for completeness sake. The "flags" member indicates if each counter is
134 * The "cna_handle_volume_perf_data" function will fill a new struct of this
135 * type and pass both, old and new data, to "submit_volume_perf_data". In that
136 * function, the per-operation latency is calculated and dispatched, then the
137 * old counters are updated.
139 #define CFG_VOLUME_PERF_INIT 0x0001
140 #define CFG_VOLUME_PERF_IO 0x0002
141 #define CFG_VOLUME_PERF_OPS 0x0003
142 #define CFG_VOLUME_PERF_LATENCY 0x0008
143 #define CFG_VOLUME_PERF_ALL 0x000F
144 #define HAVE_VOLUME_PERF_BYTES_READ 0x0010
145 #define HAVE_VOLUME_PERF_BYTES_WRITE 0x0020
146 #define HAVE_VOLUME_PERF_OPS_READ 0x0040
147 #define HAVE_VOLUME_PERF_OPS_WRITE 0x0080
148 #define HAVE_VOLUME_PERF_LATENCY_READ 0x0100
149 #define HAVE_VOLUME_PERF_LATENCY_WRITE 0x0200
150 #define HAVE_VOLUME_PERF_ALL 0x03F0
151 struct data_volume_perf_s;
152 typedef struct data_volume_perf_s data_volume_perf_t;
153 struct data_volume_perf_s {
159 uint64_t write_bytes;
162 uint64_t read_latency;
163 uint64_t write_latency;
165 data_volume_perf_t *next;
169 cna_interval_t interval;
172 ignorelist_t *il_octets;
173 ignorelist_t *il_operations;
174 ignorelist_t *il_latency;
176 data_volume_perf_t *volumes;
178 /* }}} data_volume_perf_t */
180 /*! Data types for volume usage statistics {{{
182 * \brief Configuration struct for volume usage data (free / used).
184 #define CFG_VOLUME_USAGE_DF 0x0002
185 #define CFG_VOLUME_USAGE_SNAP 0x0004
186 #define CFG_VOLUME_USAGE_ALL 0x0006
187 #define HAVE_VOLUME_USAGE_NORM_FREE 0x0010
188 #define HAVE_VOLUME_USAGE_NORM_USED 0x0020
189 #define HAVE_VOLUME_USAGE_SNAP_RSVD 0x0040
190 #define HAVE_VOLUME_USAGE_SNAP_USED 0x0080
191 #define HAVE_VOLUME_USAGE_SIS_SAVED 0x0100
192 #define HAVE_VOLUME_USAGE_ALL 0x01f0
193 #define IS_VOLUME_USAGE_OFFLINE 0x0200
194 struct data_volume_usage_s;
195 typedef struct data_volume_usage_s data_volume_usage_t;
196 struct data_volume_usage_s {
200 na_elem_t *snap_query;
204 uint64_t snap_reserved;
208 data_volume_usage_t *next;
212 cna_interval_t interval;
215 ignorelist_t *il_capacity;
216 ignorelist_t *il_snapshot;
218 data_volume_usage_t *volumes;
219 } cfg_volume_usage_t;
220 /* }}} cfg_volume_usage_t */
222 /*! Data types for system statistics {{{
224 * \brief Persistent data for system performance counters
226 #define CFG_SYSTEM_CPU 0x01
227 #define CFG_SYSTEM_NET 0x02
228 #define CFG_SYSTEM_OPS 0x04
229 #define CFG_SYSTEM_DISK 0x08
230 #define CFG_SYSTEM_ALL 0x0F
233 cna_interval_t interval;
236 /* }}} cfg_system_t */
238 struct host_config_s {
240 na_server_transport_t protocol;
248 cfg_wafl_t *cfg_wafl;
249 cfg_disk_t *cfg_disk;
250 cfg_volume_perf_t *cfg_volume_perf;
251 cfg_volume_usage_t *cfg_volume_usage;
252 cfg_system_t *cfg_system;
254 struct host_config_s *next;
260 * Used to free the various structures above.
262 static void free_disk (disk_t *disk) /* {{{ */
275 } /* }}} void free_disk */
277 static void free_cfg_wafl (cfg_wafl_t *cw) /* {{{ */
282 if (cw->query != NULL)
283 na_elem_free (cw->query);
286 } /* }}} void free_cfg_wafl */
288 static void free_cfg_disk (cfg_disk_t *cfg_disk) /* {{{ */
290 if (cfg_disk == NULL)
293 if (cfg_disk->query != NULL)
294 na_elem_free (cfg_disk->query);
296 free_disk (cfg_disk->disks);
298 } /* }}} void free_cfg_disk */
300 static void free_cfg_volume_perf (cfg_volume_perf_t *cvp) /* {{{ */
302 data_volume_perf_t *data;
307 /* Free the ignorelists */
308 ignorelist_free (cvp->il_octets);
309 ignorelist_free (cvp->il_operations);
310 ignorelist_free (cvp->il_latency);
312 /* Free the linked list of volumes */
316 data_volume_perf_t *next = data->next;
322 if (cvp->query != NULL)
323 na_elem_free (cvp->query);
326 } /* }}} void free_cfg_volume_perf */
328 static void free_cfg_volume_usage (cfg_volume_usage_t *cvu) /* {{{ */
330 data_volume_usage_t *data;
335 /* Free the ignorelists */
336 ignorelist_free (cvu->il_capacity);
337 ignorelist_free (cvu->il_snapshot);
339 /* Free the linked list of volumes */
343 data_volume_usage_t *next = data->next;
345 if (data->snap_query != NULL)
346 na_elem_free(data->snap_query);
351 if (cvu->query != NULL)
352 na_elem_free (cvu->query);
355 } /* }}} void free_cfg_volume_usage */
357 static void free_cfg_system (cfg_system_t *cs) /* {{{ */
362 if (cs->query != NULL)
363 na_elem_free (cs->query);
366 } /* }}} void free_cfg_system */
368 static void free_host_config (host_config_t *hc) /* {{{ */
379 sfree (hc->username);
380 sfree (hc->password);
382 free_cfg_disk (hc->cfg_disk);
383 free_cfg_wafl (hc->cfg_wafl);
384 free_cfg_volume_perf (hc->cfg_volume_perf);
385 free_cfg_volume_usage (hc->cfg_volume_usage);
386 free_cfg_system (hc->cfg_system);
389 na_server_close (hc->srv);
393 free_host_config (next);
394 } /* }}} void free_host_config */
397 * Auxiliary functions
399 * Used to look up volumes and disks or to handle flags.
401 static disk_t *get_disk(cfg_disk_t *cd, const char *name) /* {{{ */
405 if ((cd == NULL) || (name == NULL))
408 for (d = cd->disks; d != NULL; d = d->next) {
409 if (strcmp(d->name, name) == 0)
413 d = malloc(sizeof(*d));
416 memset (d, 0, sizeof (*d));
419 d->name = strdup(name);
420 if (d->name == NULL) {
429 } /* }}} disk_t *get_disk */
431 static data_volume_usage_t *get_volume_usage (cfg_volume_usage_t *cvu, /* {{{ */
434 data_volume_usage_t *last;
435 data_volume_usage_t *new;
437 int ignore_capacity = 0;
438 int ignore_snapshot = 0;
440 if ((cvu == NULL) || (name == NULL))
446 if (strcmp (last->name, name) == 0)
449 if (last->next == NULL)
455 /* Check the ignorelists. If *both* tell us to ignore a volume, return NULL. */
456 ignore_capacity = ignorelist_match (cvu->il_capacity, name);
457 ignore_snapshot = ignorelist_match (cvu->il_snapshot, name);
458 if ((ignore_capacity != 0) && (ignore_snapshot != 0))
461 /* Not found: allocate. */
462 new = malloc (sizeof (*new));
465 memset (new, 0, sizeof (*new));
468 new->name = strdup (name);
469 if (new->name == NULL)
475 if (ignore_capacity == 0)
476 new->flags |= CFG_VOLUME_USAGE_DF;
477 if (ignore_snapshot == 0) {
478 new->flags |= CFG_VOLUME_USAGE_SNAP;
479 new->snap_query = na_elem_new ("snapshot-list-info");
480 na_child_add_string(new->snap_query, "target-type", "volume");
481 na_child_add_string(new->snap_query, "target-name", name);
483 new->snap_query = NULL;
486 /* Add to end of list. */
493 } /* }}} data_volume_usage_t *get_volume_usage */
495 static data_volume_perf_t *get_volume_perf (cfg_volume_perf_t *cvp, /* {{{ */
498 data_volume_perf_t *last;
499 data_volume_perf_t *new;
501 int ignore_octets = 0;
502 int ignore_operations = 0;
503 int ignore_latency = 0;
505 if ((cvp == NULL) || (name == NULL))
511 if (strcmp (last->name, name) == 0)
514 if (last->next == NULL)
520 /* Check the ignorelists. If *all three* tell us to ignore a volume, return
522 ignore_octets = ignorelist_match (cvp->il_octets, name);
523 ignore_operations = ignorelist_match (cvp->il_operations, name);
524 ignore_latency = ignorelist_match (cvp->il_latency, name);
525 if ((ignore_octets != 0) || (ignore_operations != 0)
526 || (ignore_latency != 0))
529 /* Not found: allocate. */
530 new = malloc (sizeof (*new));
533 memset (new, 0, sizeof (*new));
536 new->name = strdup (name);
537 if (new->name == NULL)
543 if (ignore_octets == 0)
544 new->flags |= CFG_VOLUME_PERF_IO;
545 if (ignore_operations == 0)
546 new->flags |= CFG_VOLUME_PERF_OPS;
547 if (ignore_latency == 0)
548 new->flags |= CFG_VOLUME_PERF_LATENCY;
550 /* Add to end of list. */
557 } /* }}} data_volume_perf_t *get_volume_perf */
560 * Various submit functions.
562 * They all eventually call "submit_values" which creates a value_list_t and
563 * dispatches it to the daemon.
565 static int submit_values (const char *host, /* {{{ */
566 const char *plugin_inst,
567 const char *type, const char *type_inst,
568 value_t *values, int values_len,
569 cdtime_t timestamp, cdtime_t interval)
571 value_list_t vl = VALUE_LIST_INIT;
574 vl.values_len = values_len;
580 vl.interval = interval;
583 sstrncpy (vl.host, host, sizeof (vl.host));
585 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
586 sstrncpy (vl.plugin, "netapp", sizeof (vl.plugin));
587 if (plugin_inst != NULL)
588 sstrncpy (vl.plugin_instance, plugin_inst, sizeof (vl.plugin_instance));
589 sstrncpy (vl.type, type, sizeof (vl.type));
590 if (type_inst != NULL)
591 sstrncpy (vl.type_instance, type_inst, sizeof (vl.type_instance));
593 return (plugin_dispatch_values (&vl));
594 } /* }}} int submit_uint64 */
596 static int submit_two_derive (const char *host, const char *plugin_inst, /* {{{ */
597 const char *type, const char *type_inst, derive_t val0, derive_t val1,
598 cdtime_t timestamp, cdtime_t interval)
602 values[0].derive = val0;
603 values[1].derive = val1;
605 return (submit_values (host, plugin_inst, type, type_inst,
606 values, 2, timestamp, interval));
607 } /* }}} int submit_two_derive */
609 static int submit_derive (const char *host, const char *plugin_inst, /* {{{ */
610 const char *type, const char *type_inst, derive_t counter,
611 cdtime_t timestamp, cdtime_t interval)
617 return (submit_values (host, plugin_inst, type, type_inst,
618 &v, 1, timestamp, interval));
619 } /* }}} int submit_derive */
621 static int submit_two_gauge (const char *host, const char *plugin_inst, /* {{{ */
622 const char *type, const char *type_inst, gauge_t val0, gauge_t val1,
623 cdtime_t timestamp, cdtime_t interval)
627 values[0].gauge = val0;
628 values[1].gauge = val1;
630 return (submit_values (host, plugin_inst, type, type_inst,
631 values, 2, timestamp, interval));
632 } /* }}} int submit_two_gauge */
634 static int submit_double (const char *host, const char *plugin_inst, /* {{{ */
635 const char *type, const char *type_inst, double d,
636 cdtime_t timestamp, cdtime_t interval)
640 v.gauge = (gauge_t) d;
642 return (submit_values (host, plugin_inst, type, type_inst,
643 &v, 1, timestamp, interval));
644 } /* }}} int submit_uint64 */
646 /* Calculate hit ratio from old and new counters and submit the resulting
647 * percentage. Used by "submit_wafl_data". */
648 static int submit_cache_ratio (const char *host, /* {{{ */
649 const char *plugin_inst,
650 const char *type_inst,
660 if ((new_hits >= old_hits) && (new_misses >= old_misses)) {
664 hits = new_hits - old_hits;
665 misses = new_misses - old_misses;
667 v.gauge = 100.0 * ((gauge_t) hits) / ((gauge_t) (hits + misses));
672 return (submit_values (host, plugin_inst, "cache_ratio", type_inst,
673 &v, 1, timestamp, interval));
674 } /* }}} int submit_cache_ratio */
676 /* Submits all the caches used by WAFL. Uses "submit_cache_ratio". */
677 static int submit_wafl_data (const char *hostname, const char *instance, /* {{{ */
678 cfg_wafl_t *old_data, const cfg_wafl_t *new_data, int interval)
680 /* Submit requested counters */
681 if (HAS_ALL_FLAGS (old_data->flags, CFG_WAFL_NAME_CACHE | HAVE_WAFL_NAME_CACHE)
682 && HAS_ALL_FLAGS (new_data->flags, HAVE_WAFL_NAME_CACHE))
683 submit_cache_ratio (hostname, instance, "name_cache_hit",
684 new_data->name_cache_hit, new_data->name_cache_miss,
685 old_data->name_cache_hit, old_data->name_cache_miss,
686 new_data->timestamp, interval);
688 if (HAS_ALL_FLAGS (old_data->flags, CFG_WAFL_DIR_CACHE | HAVE_WAFL_FIND_DIR)
689 && HAS_ALL_FLAGS (new_data->flags, HAVE_WAFL_FIND_DIR))
690 submit_cache_ratio (hostname, instance, "find_dir_hit",
691 new_data->find_dir_hit, new_data->find_dir_miss,
692 old_data->find_dir_hit, old_data->find_dir_miss,
693 new_data->timestamp, interval);
695 if (HAS_ALL_FLAGS (old_data->flags, CFG_WAFL_BUF_CACHE | HAVE_WAFL_BUF_HASH)
696 && HAS_ALL_FLAGS (new_data->flags, HAVE_WAFL_BUF_HASH))
697 submit_cache_ratio (hostname, instance, "buf_hash_hit",
698 new_data->buf_hash_hit, new_data->buf_hash_miss,
699 old_data->buf_hash_hit, old_data->buf_hash_miss,
700 new_data->timestamp, interval);
702 if (HAS_ALL_FLAGS (old_data->flags, CFG_WAFL_INODE_CACHE | HAVE_WAFL_INODE_CACHE)
703 && HAS_ALL_FLAGS (new_data->flags, HAVE_WAFL_INODE_CACHE))
704 submit_cache_ratio (hostname, instance, "inode_cache_hit",
705 new_data->inode_cache_hit, new_data->inode_cache_miss,
706 old_data->inode_cache_hit, old_data->inode_cache_miss,
707 new_data->timestamp, interval);
709 /* Clear old HAVE_* flags */
710 old_data->flags &= ~HAVE_WAFL_ALL;
712 /* Copy all counters */
713 old_data->timestamp = new_data->timestamp;
714 old_data->name_cache_hit = new_data->name_cache_hit;
715 old_data->name_cache_miss = new_data->name_cache_miss;
716 old_data->find_dir_hit = new_data->find_dir_hit;
717 old_data->find_dir_miss = new_data->find_dir_miss;
718 old_data->buf_hash_hit = new_data->buf_hash_hit;
719 old_data->buf_hash_miss = new_data->buf_hash_miss;
720 old_data->inode_cache_hit = new_data->inode_cache_hit;
721 old_data->inode_cache_miss = new_data->inode_cache_miss;
723 /* Copy HAVE_* flags */
724 old_data->flags |= (new_data->flags & HAVE_WAFL_ALL);
727 } /* }}} int submit_wafl_data */
729 /* Submits volume performance data to the daemon, taking care to honor and
730 * update flags appropriately. */
731 static int submit_volume_perf_data (const char *hostname, /* {{{ */
732 data_volume_perf_t *old_data,
733 const data_volume_perf_t *new_data, int interval)
735 char plugin_instance[DATA_MAX_NAME_LEN];
737 if ((hostname == NULL) || (old_data == NULL) || (new_data == NULL))
740 ssnprintf (plugin_instance, sizeof (plugin_instance),
741 "volume-%s", old_data->name);
743 /* Check for and submit disk-octet values */
744 if (HAS_ALL_FLAGS (old_data->flags, CFG_VOLUME_PERF_IO)
745 && HAS_ALL_FLAGS (new_data->flags, HAVE_VOLUME_PERF_BYTES_READ | HAVE_VOLUME_PERF_BYTES_WRITE))
747 submit_two_derive (hostname, plugin_instance, "disk_octets", /* type instance = */ NULL,
748 (derive_t) new_data->read_bytes, (derive_t) new_data->write_bytes, new_data->timestamp, interval);
751 /* Check for and submit disk-operations values */
752 if (HAS_ALL_FLAGS (old_data->flags, CFG_VOLUME_PERF_OPS)
753 && HAS_ALL_FLAGS (new_data->flags, HAVE_VOLUME_PERF_OPS_READ | HAVE_VOLUME_PERF_OPS_WRITE))
755 submit_two_derive (hostname, plugin_instance, "disk_ops", /* type instance = */ NULL,
756 (derive_t) new_data->read_ops, (derive_t) new_data->write_ops, new_data->timestamp, interval);
759 /* Check for, calculate and submit disk-latency values */
760 if (HAS_ALL_FLAGS (old_data->flags, CFG_VOLUME_PERF_LATENCY
761 | HAVE_VOLUME_PERF_OPS_READ | HAVE_VOLUME_PERF_OPS_WRITE
762 | HAVE_VOLUME_PERF_LATENCY_READ | HAVE_VOLUME_PERF_LATENCY_WRITE)
763 && HAS_ALL_FLAGS (new_data->flags, HAVE_VOLUME_PERF_OPS_READ | HAVE_VOLUME_PERF_OPS_WRITE
764 | HAVE_VOLUME_PERF_LATENCY_READ | HAVE_VOLUME_PERF_LATENCY_WRITE))
766 gauge_t latency_per_op_read;
767 gauge_t latency_per_op_write;
769 latency_per_op_read = NAN;
770 latency_per_op_write = NAN;
772 /* Check if a counter wrapped around. */
773 if ((new_data->read_ops > old_data->read_ops)
774 && (new_data->read_latency > old_data->read_latency))
776 uint64_t diff_ops_read;
777 uint64_t diff_latency_read;
779 diff_ops_read = new_data->read_ops - old_data->read_ops;
780 diff_latency_read = new_data->read_latency - old_data->read_latency;
782 if (diff_ops_read > 0)
783 latency_per_op_read = ((gauge_t) diff_latency_read) / ((gauge_t) diff_ops_read);
786 if ((new_data->write_ops > old_data->write_ops)
787 && (new_data->write_latency > old_data->write_latency))
789 uint64_t diff_ops_write;
790 uint64_t diff_latency_write;
792 diff_ops_write = new_data->write_ops - old_data->write_ops;
793 diff_latency_write = new_data->write_latency - old_data->write_latency;
795 if (diff_ops_write > 0)
796 latency_per_op_write = ((gauge_t) diff_latency_write) / ((gauge_t) diff_ops_write);
799 submit_two_gauge (hostname, plugin_instance, "disk_latency", /* type instance = */ NULL,
800 latency_per_op_read, latency_per_op_write, new_data->timestamp, interval);
803 /* Clear all HAVE_* flags. */
804 old_data->flags &= ~HAVE_VOLUME_PERF_ALL;
806 /* Copy all counters */
807 old_data->timestamp = new_data->timestamp;
808 old_data->read_bytes = new_data->read_bytes;
809 old_data->write_bytes = new_data->write_bytes;
810 old_data->read_ops = new_data->read_ops;
811 old_data->write_ops = new_data->write_ops;
812 old_data->read_latency = new_data->read_latency;
813 old_data->write_latency = new_data->write_latency;
815 /* Copy the HAVE_* flags */
816 old_data->flags |= (new_data->flags & HAVE_VOLUME_PERF_ALL);
819 } /* }}} int submit_volume_perf_data */
821 static cdtime_t cna_child_get_cdtime (na_elem_t *data) /* {{{ */
825 t = (time_t) na_child_get_uint64 (data, "timestamp", /* default = */ 0);
827 return (TIME_T_TO_CDTIME_T (t));
828 } /* }}} cdtime_t cna_child_get_cdtime */
834 * These functions are called with appropriate data returned by the libnetapp
835 * interface which is parsed and submitted with the above functions.
837 /* Data corresponding to <WAFL /> */
838 static int cna_handle_wafl_data (const char *hostname, cfg_wafl_t *cfg_wafl, /* {{{ */
839 na_elem_t *data, int interval)
841 cfg_wafl_t perf_data;
842 const char *plugin_inst;
844 na_elem_t *instances;
846 na_elem_iter_t counter_iter;
848 memset (&perf_data, 0, sizeof (perf_data));
850 perf_data.timestamp = cna_child_get_cdtime (data);
852 instances = na_elem_child(na_elem_child (data, "instances"), "instance-data");
853 if (instances == NULL)
855 ERROR ("netapp plugin: cna_handle_wafl_data: "
856 "na_elem_child (\"instances\") failed "
857 "for host %s.", hostname);
861 plugin_inst = na_child_get_string(instances, "name");
862 if (plugin_inst == NULL)
864 ERROR ("netapp plugin: cna_handle_wafl_data: "
865 "na_child_get_string (\"name\") failed "
866 "for host %s.", hostname);
870 /* Iterate over all counters */
871 counter_iter = na_child_iterator (na_elem_child (instances, "counters"));
872 for (counter = na_iterator_next (&counter_iter);
874 counter = na_iterator_next (&counter_iter))
879 name = na_child_get_string(counter, "name");
883 value = na_child_get_uint64(counter, "value", UINT64_MAX);
884 if (value == UINT64_MAX)
887 if (!strcmp(name, "name_cache_hit")) {
888 perf_data.name_cache_hit = value;
889 perf_data.flags |= HAVE_WAFL_NAME_CACHE_HIT;
890 } else if (!strcmp(name, "name_cache_miss")) {
891 perf_data.name_cache_miss = value;
892 perf_data.flags |= HAVE_WAFL_NAME_CACHE_MISS;
893 } else if (!strcmp(name, "find_dir_hit")) {
894 perf_data.find_dir_hit = value;
895 perf_data.flags |= HAVE_WAFL_FIND_DIR_HIT;
896 } else if (!strcmp(name, "find_dir_miss")) {
897 perf_data.find_dir_miss = value;
898 perf_data.flags |= HAVE_WAFL_FIND_DIR_MISS;
899 } else if (!strcmp(name, "buf_hash_hit")) {
900 perf_data.buf_hash_hit = value;
901 perf_data.flags |= HAVE_WAFL_BUF_HASH_HIT;
902 } else if (!strcmp(name, "buf_hash_miss")) {
903 perf_data.buf_hash_miss = value;
904 perf_data.flags |= HAVE_WAFL_BUF_HASH_MISS;
905 } else if (!strcmp(name, "inode_cache_hit")) {
906 perf_data.inode_cache_hit = value;
907 perf_data.flags |= HAVE_WAFL_INODE_CACHE_HIT;
908 } else if (!strcmp(name, "inode_cache_miss")) {
909 perf_data.inode_cache_miss = value;
910 perf_data.flags |= HAVE_WAFL_INODE_CACHE_MISS;
912 DEBUG("netapp plugin: cna_handle_wafl_data: "
913 "Found unexpected child: %s "
914 "for host %s.", name, hostname);
918 return (submit_wafl_data (hostname, plugin_inst, cfg_wafl, &perf_data, interval));
919 } /* }}} void cna_handle_wafl_data */
921 static int cna_setup_wafl (cfg_wafl_t *cw) /* {{{ */
928 if (cw->query != NULL)
931 cw->query = na_elem_new("perf-object-get-instances");
932 if (cw->query == NULL)
934 ERROR ("netapp plugin: na_elem_new failed.");
937 na_child_add_string (cw->query, "objectname", "wafl");
939 e = na_elem_new("counters");
942 na_elem_free (cw->query);
944 ERROR ("netapp plugin: na_elem_new failed.");
947 na_child_add_string(e, "counter", "name_cache_hit");
948 na_child_add_string(e, "counter", "name_cache_miss");
949 na_child_add_string(e, "counter", "find_dir_hit");
950 na_child_add_string(e, "counter", "find_dir_miss");
951 na_child_add_string(e, "counter", "buf_hash_hit");
952 na_child_add_string(e, "counter", "buf_hash_miss");
953 na_child_add_string(e, "counter", "inode_cache_hit");
954 na_child_add_string(e, "counter", "inode_cache_miss");
956 na_child_add(cw->query, e);
959 } /* }}} int cna_setup_wafl */
961 static int cna_query_wafl (host_config_t *host) /* {{{ */
970 /* If WAFL was not configured, return without doing anything. */
971 if (host->cfg_wafl == NULL)
975 if ((host->cfg_wafl->interval.interval + host->cfg_wafl->interval.last_read) > now)
978 status = cna_setup_wafl (host->cfg_wafl);
981 assert (host->cfg_wafl->query != NULL);
983 data = na_server_invoke_elem(host->srv, host->cfg_wafl->query);
984 if (na_results_status (data) != NA_OK)
986 ERROR ("netapp plugin: cna_query_wafl: na_server_invoke_elem failed for host %s: %s",
987 host->name, na_results_reason (data));
992 status = cna_handle_wafl_data (host->name, host->cfg_wafl, data, host->interval);
995 host->cfg_wafl->interval.last_read = now;
999 } /* }}} int cna_query_wafl */
1001 /* Data corresponding to <Disks /> */
1002 static int cna_handle_disk_data (const char *hostname, /* {{{ */
1003 cfg_disk_t *cfg_disk, na_elem_t *data, cdtime_t interval)
1006 na_elem_t *instances;
1007 na_elem_t *instance;
1008 na_elem_iter_t instance_iter;
1009 disk_t *worst_disk = NULL;
1011 if ((cfg_disk == NULL) || (data == NULL))
1014 timestamp = cna_child_get_cdtime (data);
1016 instances = na_elem_child (data, "instances");
1017 if (instances == NULL)
1019 ERROR ("netapp plugin: cna_handle_disk_data: "
1020 "na_elem_child (\"instances\") failed "
1021 "for host %s.", hostname);
1025 /* Iterate over all children */
1026 instance_iter = na_child_iterator (instances);
1027 for (instance = na_iterator_next (&instance_iter);
1029 instance = na_iterator_next(&instance_iter))
1034 na_elem_iter_t counter_iterator;
1037 memset (&new_data, 0, sizeof (new_data));
1038 new_data.timestamp = timestamp;
1039 new_data.disk_busy_percent = NAN;
1041 old_data = get_disk(cfg_disk, na_child_get_string (instance, "name"));
1042 if (old_data == NULL)
1045 /* Look for the "disk_busy" and "base_for_disk_busy" counters */
1046 counter_iterator = na_child_iterator(na_elem_child(instance, "counters"));
1047 for (counter = na_iterator_next(&counter_iterator);
1049 counter = na_iterator_next(&counter_iterator))
1054 name = na_child_get_string(counter, "name");
1058 value = na_child_get_uint64(counter, "value", UINT64_MAX);
1059 if (value == UINT64_MAX)
1062 if (strcmp(name, "disk_busy") == 0)
1064 new_data.disk_busy = value;
1065 new_data.flags |= HAVE_DISK_BUSY;
1067 else if (strcmp(name, "base_for_disk_busy") == 0)
1069 new_data.base_for_disk_busy = value;
1070 new_data.flags |= HAVE_DISK_BASE;
1074 DEBUG ("netapp plugin: cna_handle_disk_data: "
1075 "Counter not handled: %s = %"PRIu64,
1080 /* If all required counters are available and did not just wrap around,
1081 * calculate the busy percentage. Otherwise, the value is initialized to
1082 * NAN at the top of the for-loop. */
1083 if (HAS_ALL_FLAGS (old_data->flags, HAVE_DISK_BUSY | HAVE_DISK_BASE)
1084 && HAS_ALL_FLAGS (new_data.flags, HAVE_DISK_BUSY | HAVE_DISK_BASE)
1085 && (new_data.disk_busy >= old_data->disk_busy)
1086 && (new_data.base_for_disk_busy > old_data->base_for_disk_busy))
1091 busy_diff = new_data.disk_busy - old_data->disk_busy;
1092 base_diff = new_data.base_for_disk_busy - old_data->base_for_disk_busy;
1094 new_data.disk_busy_percent = 100.0
1095 * ((gauge_t) busy_diff) / ((gauge_t) base_diff);
1098 /* Clear HAVE_* flags */
1099 old_data->flags &= ~HAVE_DISK_ALL;
1102 old_data->timestamp = new_data.timestamp;
1103 old_data->disk_busy = new_data.disk_busy;
1104 old_data->base_for_disk_busy = new_data.base_for_disk_busy;
1105 old_data->disk_busy_percent = new_data.disk_busy_percent;
1108 old_data->flags |= (new_data.flags & HAVE_DISK_ALL);
1110 if ((worst_disk == NULL)
1111 || (worst_disk->disk_busy_percent < old_data->disk_busy_percent))
1112 worst_disk = old_data;
1113 } /* for (all disks) */
1115 if ((cfg_disk->flags & CFG_DISK_BUSIEST) && (worst_disk != NULL))
1116 submit_double (hostname, "system", "percent", "disk_busy",
1117 worst_disk->disk_busy_percent, timestamp, interval);
1120 } /* }}} int cna_handle_disk_data */
1122 static int cna_setup_disk (cfg_disk_t *cd) /* {{{ */
1129 if (cd->query != NULL)
1132 cd->query = na_elem_new ("perf-object-get-instances");
1133 if (cd->query == NULL)
1135 ERROR ("netapp plugin: na_elem_new failed.");
1138 na_child_add_string (cd->query, "objectname", "disk");
1140 e = na_elem_new("counters");
1143 na_elem_free (cd->query);
1145 ERROR ("netapp plugin: na_elem_new failed.");
1148 na_child_add_string(e, "counter", "disk_busy");
1149 na_child_add_string(e, "counter", "base_for_disk_busy");
1150 na_child_add(cd->query, e);
1153 } /* }}} int cna_setup_disk */
1155 static int cna_query_disk (host_config_t *host) /* {{{ */
1164 /* If the user did not configure disk statistics, return without doing
1166 if (host->cfg_disk == NULL)
1170 if ((host->cfg_disk->interval.interval + host->cfg_disk->interval.last_read) > now)
1173 status = cna_setup_disk (host->cfg_disk);
1176 assert (host->cfg_disk->query != NULL);
1178 data = na_server_invoke_elem(host->srv, host->cfg_disk->query);
1179 if (na_results_status (data) != NA_OK)
1181 ERROR ("netapp plugin: cna_query_disk: na_server_invoke_elem failed for host %s: %s",
1182 host->name, na_results_reason (data));
1183 na_elem_free (data);
1187 status = cna_handle_disk_data (host->name, host->cfg_disk, data, host->interval);
1190 host->cfg_disk->interval.last_read = now;
1192 na_elem_free (data);
1194 } /* }}} int cna_query_disk */
1196 /* Data corresponding to <VolumePerf /> */
1197 static int cna_handle_volume_perf_data (const char *hostname, /* {{{ */
1198 cfg_volume_perf_t *cvp, na_elem_t *data, cdtime_t interval)
1201 na_elem_t *elem_instances;
1202 na_elem_iter_t iter_instances;
1203 na_elem_t *elem_instance;
1205 timestamp = cna_child_get_cdtime (data);
1207 elem_instances = na_elem_child(data, "instances");
1208 if (elem_instances == NULL)
1210 ERROR ("netapp plugin: handle_volume_perf_data: "
1211 "na_elem_child (\"instances\") failed "
1212 "for host %s.", hostname);
1216 iter_instances = na_child_iterator (elem_instances);
1217 for (elem_instance = na_iterator_next(&iter_instances);
1218 elem_instance != NULL;
1219 elem_instance = na_iterator_next(&iter_instances))
1223 data_volume_perf_t perf_data;
1224 data_volume_perf_t *v;
1226 na_elem_t *elem_counters;
1227 na_elem_iter_t iter_counters;
1228 na_elem_t *elem_counter;
1230 memset (&perf_data, 0, sizeof (perf_data));
1231 perf_data.timestamp = timestamp;
1233 name = na_child_get_string (elem_instance, "name");
1237 /* get_volume_perf may return NULL if this volume is to be ignored. */
1238 v = get_volume_perf (cvp, name);
1242 elem_counters = na_elem_child (elem_instance, "counters");
1243 if (elem_counters == NULL)
1246 iter_counters = na_child_iterator (elem_counters);
1247 for (elem_counter = na_iterator_next(&iter_counters);
1248 elem_counter != NULL;
1249 elem_counter = na_iterator_next(&iter_counters))
1254 name = na_child_get_string (elem_counter, "name");
1258 value = na_child_get_uint64 (elem_counter, "value", UINT64_MAX);
1259 if (value == UINT64_MAX)
1262 if (!strcmp(name, "read_data")) {
1263 perf_data.read_bytes = value;
1264 perf_data.flags |= HAVE_VOLUME_PERF_BYTES_READ;
1265 } else if (!strcmp(name, "write_data")) {
1266 perf_data.write_bytes = value;
1267 perf_data.flags |= HAVE_VOLUME_PERF_BYTES_WRITE;
1268 } else if (!strcmp(name, "read_ops")) {
1269 perf_data.read_ops = value;
1270 perf_data.flags |= HAVE_VOLUME_PERF_OPS_READ;
1271 } else if (!strcmp(name, "write_ops")) {
1272 perf_data.write_ops = value;
1273 perf_data.flags |= HAVE_VOLUME_PERF_OPS_WRITE;
1274 } else if (!strcmp(name, "read_latency")) {
1275 perf_data.read_latency = value;
1276 perf_data.flags |= HAVE_VOLUME_PERF_LATENCY_READ;
1277 } else if (!strcmp(name, "write_latency")) {
1278 perf_data.write_latency = value;
1279 perf_data.flags |= HAVE_VOLUME_PERF_LATENCY_WRITE;
1281 } /* for (elem_counter) */
1283 submit_volume_perf_data (hostname, v, &perf_data, interval);
1284 } /* for (volume) */
1287 } /* }}} int cna_handle_volume_perf_data */
1289 static int cna_setup_volume_perf (cfg_volume_perf_t *cd) /* {{{ */
1296 if (cd->query != NULL)
1299 cd->query = na_elem_new ("perf-object-get-instances");
1300 if (cd->query == NULL)
1302 ERROR ("netapp plugin: na_elem_new failed.");
1305 na_child_add_string (cd->query, "objectname", "volume");
1307 e = na_elem_new("counters");
1310 na_elem_free (cd->query);
1312 ERROR ("netapp plugin: na_elem_new failed.");
1315 na_child_add_string(e, "counter", "read_ops");
1316 na_child_add_string(e, "counter", "write_ops");
1317 na_child_add_string(e, "counter", "read_data");
1318 na_child_add_string(e, "counter", "write_data");
1319 na_child_add_string(e, "counter", "read_latency");
1320 na_child_add_string(e, "counter", "write_latency");
1321 na_child_add(cd->query, e);
1324 } /* }}} int cna_setup_volume_perf */
1326 static int cna_query_volume_perf (host_config_t *host) /* {{{ */
1335 /* If the user did not configure volume performance statistics, return
1336 * without doing anything. */
1337 if (host->cfg_volume_perf == NULL)
1341 if ((host->cfg_volume_perf->interval.interval + host->cfg_volume_perf->interval.last_read) > now)
1344 status = cna_setup_volume_perf (host->cfg_volume_perf);
1347 assert (host->cfg_volume_perf->query != NULL);
1349 data = na_server_invoke_elem (host->srv, host->cfg_volume_perf->query);
1350 if (na_results_status (data) != NA_OK)
1352 ERROR ("netapp plugin: cna_query_volume_perf: na_server_invoke_elem failed for host %s: %s",
1353 host->name, na_results_reason (data));
1354 na_elem_free (data);
1358 status = cna_handle_volume_perf_data (host->name, host->cfg_volume_perf, data, host->interval);
1361 host->cfg_volume_perf->interval.last_read = now;
1363 na_elem_free (data);
1365 } /* }}} int cna_query_volume_perf */
1367 /* Data corresponding to <VolumeUsage /> */
1368 static int cna_submit_volume_usage_data (const char *hostname, /* {{{ */
1369 cfg_volume_usage_t *cfg_volume, int interval)
1371 data_volume_usage_t *v;
1373 for (v = cfg_volume->volumes; v != NULL; v = v->next)
1375 char plugin_instance[DATA_MAX_NAME_LEN];
1377 uint64_t norm_used = v->norm_used;
1378 uint64_t norm_free = v->norm_free;
1379 uint64_t sis_saved = v->sis_saved;
1380 uint64_t snap_reserve_used = 0;
1381 uint64_t snap_reserve_free = v->snap_reserved;
1382 uint64_t snap_norm_used = v->snap_used;
1384 ssnprintf (plugin_instance, sizeof (plugin_instance),
1385 "volume-%s", v->name);
1387 if (HAS_ALL_FLAGS (v->flags, HAVE_VOLUME_USAGE_SNAP_USED | HAVE_VOLUME_USAGE_SNAP_RSVD)) {
1388 if (v->snap_reserved > v->snap_used) {
1389 snap_reserve_free = v->snap_reserved - v->snap_used;
1390 snap_reserve_used = v->snap_used;
1393 snap_reserve_free = 0;
1394 snap_reserve_used = v->snap_reserved;
1395 snap_norm_used = v->snap_used - v->snap_reserved;
1399 /* The space used by snapshots but not reserved for them is included in
1400 * both, norm_used and snap_norm_used. If possible, subtract this here. */
1401 if (HAS_ALL_FLAGS (v->flags, HAVE_VOLUME_USAGE_NORM_USED | HAVE_VOLUME_USAGE_SNAP_USED))
1403 if (norm_used >= snap_norm_used)
1404 norm_used -= snap_norm_used;
1407 ERROR ("netapp plugin: (norm_used = %"PRIu64") < (snap_norm_used = "
1408 "%"PRIu64") for host %s. Invalidating both.",
1409 norm_used, snap_norm_used, hostname);
1410 v->flags &= ~(HAVE_VOLUME_USAGE_NORM_USED | HAVE_VOLUME_USAGE_SNAP_USED);
1414 if (HAS_ALL_FLAGS (v->flags, HAVE_VOLUME_USAGE_NORM_FREE))
1415 submit_double (hostname, /* plugin instance = */ plugin_instance,
1416 "df_complex", "free",
1417 (double) norm_free, /* timestamp = */ 0, interval);
1419 if (HAS_ALL_FLAGS (v->flags, HAVE_VOLUME_USAGE_SIS_SAVED))
1420 submit_double (hostname, /* plugin instance = */ plugin_instance,
1421 "df_complex", "sis_saved",
1422 (double) sis_saved, /* timestamp = */ 0, interval);
1424 if (HAS_ALL_FLAGS (v->flags, HAVE_VOLUME_USAGE_NORM_USED))
1425 submit_double (hostname, /* plugin instance = */ plugin_instance,
1426 "df_complex", "used",
1427 (double) norm_used, /* timestamp = */ 0, interval);
1429 if (HAS_ALL_FLAGS (v->flags, HAVE_VOLUME_USAGE_SNAP_RSVD))
1430 submit_double (hostname, /* plugin instance = */ plugin_instance,
1431 "df_complex", "snap_reserved",
1432 (double) snap_reserve_free, /* timestamp = */ 0, interval);
1434 if (HAS_ALL_FLAGS (v->flags, HAVE_VOLUME_USAGE_SNAP_USED | HAVE_VOLUME_USAGE_SNAP_RSVD))
1435 submit_double (hostname, /* plugin instance = */ plugin_instance,
1436 "df_complex", "snap_reserve_used",
1437 (double) snap_reserve_used, /* timestamp = */ 0, interval);
1439 if (HAS_ALL_FLAGS (v->flags, HAVE_VOLUME_USAGE_SNAP_USED))
1440 submit_double (hostname, /* plugin instance = */ plugin_instance,
1441 "df_complex", "snap_normal_used",
1442 (double) snap_norm_used, /* timestamp = */ 0, interval);
1444 /* Clear all the HAVE_* flags */
1445 v->flags &= ~HAVE_VOLUME_USAGE_ALL;
1446 } /* for (v = cfg_volume->volumes) */
1449 } /* }}} int cna_submit_volume_usage_data */
1451 /* Switch the state of a volume between online and offline and send out a
1453 static int cna_change_volume_status (const char *hostname, /* {{{ */
1454 data_volume_usage_t *v)
1458 memset (&n, 0, sizeof (&n));
1460 sstrncpy (n.host, hostname, sizeof (n.host));
1461 sstrncpy (n.plugin, "netapp", sizeof (n.plugin));
1462 sstrncpy (n.plugin_instance, v->name, sizeof (n.plugin_instance));
1464 if ((v->flags & IS_VOLUME_USAGE_OFFLINE) != 0) {
1465 n.severity = NOTIF_OKAY;
1466 ssnprintf (n.message, sizeof (n.message),
1467 "Volume %s is now online.", v->name);
1468 v->flags &= ~IS_VOLUME_USAGE_OFFLINE;
1470 n.severity = NOTIF_WARNING;
1471 ssnprintf (n.message, sizeof (n.message),
1472 "Volume %s is now offline.", v->name);
1473 v->flags |= IS_VOLUME_USAGE_OFFLINE;
1476 return (plugin_dispatch_notification (&n));
1477 } /* }}} int cna_change_volume_status */
1479 static void cna_handle_volume_snap_usage(const host_config_t *host, /* {{{ */
1480 data_volume_usage_t *v)
1482 uint64_t snap_used = 0, value;
1483 na_elem_t *data, *elem_snap, *elem_snapshots;
1484 na_elem_iter_t iter_snap;
1486 data = na_server_invoke_elem(host->srv, v->snap_query);
1487 if (na_results_status(data) != NA_OK)
1489 if (na_results_errno(data) == EVOLUMEOFFLINE) {
1490 if ((v->flags & IS_VOLUME_USAGE_OFFLINE) == 0)
1491 cna_change_volume_status (host->name, v);
1493 ERROR ("netapp plugin: cna_handle_volume_snap_usage: na_server_invoke_elem for "
1494 "volume \"%s\" on host %s failed with error %d: %s", v->name,
1495 host->name, na_results_errno(data), na_results_reason(data));
1501 if ((v->flags & IS_VOLUME_USAGE_OFFLINE) != 0)
1502 cna_change_volume_status (host->name, v);
1504 elem_snapshots = na_elem_child (data, "snapshots");
1505 if (elem_snapshots == NULL)
1507 ERROR ("netapp plugin: cna_handle_volume_snap_usage: "
1508 "na_elem_child (\"snapshots\") failed "
1509 "for host %s.", host->name);
1514 iter_snap = na_child_iterator (elem_snapshots);
1515 for (elem_snap = na_iterator_next (&iter_snap);
1517 elem_snap = na_iterator_next (&iter_snap))
1519 value = na_child_get_uint64(elem_snap, "cumulative-total", 0);
1520 /* "cumulative-total" is the total size of the oldest snapshot plus all
1521 * newer ones in blocks (1KB). We therefore are looking for the highest
1522 * number of all snapshots - that's the size required for the snapshots. */
1523 if (value > snap_used)
1526 na_elem_free (data);
1527 /* snap_used is in 1024 byte blocks */
1528 v->snap_used = snap_used * 1024;
1529 v->flags |= HAVE_VOLUME_USAGE_SNAP_USED;
1530 } /* }}} void cna_handle_volume_snap_usage */
1532 static int cna_handle_volume_usage_data (const host_config_t *host, /* {{{ */
1533 cfg_volume_usage_t *cfg_volume, na_elem_t *data)
1535 na_elem_t *elem_volume;
1536 na_elem_t *elem_volumes;
1537 na_elem_iter_t iter_volume;
1539 elem_volumes = na_elem_child (data, "volumes");
1540 if (elem_volumes == NULL)
1542 ERROR ("netapp plugin: cna_handle_volume_usage_data: "
1543 "na_elem_child (\"volumes\") failed "
1544 "for host %s.", host->name);
1548 iter_volume = na_child_iterator (elem_volumes);
1549 for (elem_volume = na_iterator_next (&iter_volume);
1550 elem_volume != NULL;
1551 elem_volume = na_iterator_next (&iter_volume))
1553 const char *volume_name, *state;
1555 data_volume_usage_t *v;
1559 const char *sis_state;
1560 uint64_t sis_saved_reported;
1562 volume_name = na_child_get_string (elem_volume, "name");
1563 if (volume_name == NULL)
1566 state = na_child_get_string (elem_volume, "state");
1567 if ((state == NULL) || (strcmp(state, "online") != 0))
1570 /* get_volume_usage may return NULL if the volume is to be ignored. */
1571 v = get_volume_usage (cfg_volume, volume_name);
1575 if ((v->flags & CFG_VOLUME_USAGE_SNAP) != 0)
1576 cna_handle_volume_snap_usage(host, v);
1578 if ((v->flags & CFG_VOLUME_USAGE_DF) == 0)
1581 /* 2^4 exa-bytes? This will take a while ;) */
1582 value = na_child_get_uint64(elem_volume, "size-available", UINT64_MAX);
1583 if (value != UINT64_MAX) {
1584 v->norm_free = value;
1585 v->flags |= HAVE_VOLUME_USAGE_NORM_FREE;
1588 value = na_child_get_uint64(elem_volume, "size-used", UINT64_MAX);
1589 if (value != UINT64_MAX) {
1590 v->norm_used = value;
1591 v->flags |= HAVE_VOLUME_USAGE_NORM_USED;
1594 value = na_child_get_uint64(elem_volume, "snapshot-blocks-reserved", UINT64_MAX);
1595 if (value != UINT64_MAX) {
1596 /* 1 block == 1024 bytes as per API docs */
1597 v->snap_reserved = 1024 * value;
1598 v->flags |= HAVE_VOLUME_USAGE_SNAP_RSVD;
1601 sis = na_elem_child(elem_volume, "sis");
1605 if (na_elem_child(sis, "sis-info"))
1606 sis = na_elem_child(sis, "sis-info");
1608 sis_state = na_child_get_string(sis, "state");
1609 if (sis_state == NULL)
1612 /* If SIS is not enabled, there's nothing left to do for this volume. */
1613 if (strcmp ("enabled", sis_state) != 0)
1616 sis_saved_reported = na_child_get_uint64(sis, "size-saved", UINT64_MAX);
1617 if (sis_saved_reported == UINT64_MAX)
1620 /* size-saved is actually a 32 bit number, so ... time for some guesswork. */
1621 if ((sis_saved_reported >> 32) != 0) {
1622 /* In case they ever fix this bug. */
1623 v->sis_saved = sis_saved_reported;
1624 v->flags |= HAVE_VOLUME_USAGE_SIS_SAVED;
1625 } else { /* really hacky work-around code. {{{ */
1626 uint64_t sis_saved_percent;
1627 uint64_t sis_saved_guess;
1628 uint64_t overflow_guess;
1629 uint64_t guess1, guess2, guess3;
1631 /* Check if we have v->norm_used. Without it, we cannot calculate
1632 * sis_saved_guess. */
1633 if ((v->flags & HAVE_VOLUME_USAGE_NORM_USED) == 0)
1636 sis_saved_percent = na_child_get_uint64(sis, "percentage-saved", UINT64_MAX);
1637 if (sis_saved_percent > 100)
1640 /* The "size-saved" value is a 32bit unsigned integer. This is a bug and
1641 * will hopefully be fixed in later versions. To work around the bug, try
1642 * to figure out how often the 32bit integer wrapped around by using the
1643 * "percentage-saved" value. Because the percentage is in the range
1644 * [0-100], this should work as long as the saved space does not exceed
1646 /* percentage-saved = size-saved / (size-saved + size-used) */
1647 if (sis_saved_percent < 100)
1648 sis_saved_guess = v->norm_used * sis_saved_percent / (100 - sis_saved_percent);
1650 sis_saved_guess = v->norm_used;
1652 overflow_guess = sis_saved_guess >> 32;
1653 guess1 = overflow_guess ? ((overflow_guess - 1) << 32) + sis_saved_reported : sis_saved_reported;
1654 guess2 = (overflow_guess << 32) + sis_saved_reported;
1655 guess3 = ((overflow_guess + 1) << 32) + sis_saved_reported;
1657 if (sis_saved_guess < guess2) {
1658 if ((sis_saved_guess - guess1) < (guess2 - sis_saved_guess))
1659 v->sis_saved = guess1;
1661 v->sis_saved = guess2;
1663 if ((sis_saved_guess - guess2) < (guess3 - sis_saved_guess))
1664 v->sis_saved = guess2;
1666 v->sis_saved = guess3;
1668 v->flags |= HAVE_VOLUME_USAGE_SIS_SAVED;
1669 } /* }}} end of 32-bit workaround */
1670 } /* for (elem_volume) */
1672 return (cna_submit_volume_usage_data (host->name, cfg_volume, host->interval));
1673 } /* }}} int cna_handle_volume_usage_data */
1675 static int cna_setup_volume_usage (cfg_volume_usage_t *cvu) /* {{{ */
1680 if (cvu->query != NULL)
1683 cvu->query = na_elem_new ("volume-list-info");
1684 if (cvu->query == NULL)
1686 ERROR ("netapp plugin: na_elem_new failed.");
1691 } /* }}} int cna_setup_volume_usage */
1693 static int cna_query_volume_usage (host_config_t *host) /* {{{ */
1702 /* If the user did not configure volume_usage statistics, return without
1703 * doing anything. */
1704 if (host->cfg_volume_usage == NULL)
1708 if ((host->cfg_volume_usage->interval.interval + host->cfg_volume_usage->interval.last_read) > now)
1711 status = cna_setup_volume_usage (host->cfg_volume_usage);
1714 assert (host->cfg_volume_usage->query != NULL);
1716 data = na_server_invoke_elem(host->srv, host->cfg_volume_usage->query);
1717 if (na_results_status (data) != NA_OK)
1719 ERROR ("netapp plugin: cna_query_volume_usage: na_server_invoke_elem failed for host %s: %s",
1720 host->name, na_results_reason (data));
1721 na_elem_free (data);
1725 status = cna_handle_volume_usage_data (host, host->cfg_volume_usage, data);
1728 host->cfg_volume_usage->interval.last_read = now;
1730 na_elem_free (data);
1732 } /* }}} int cna_query_volume_usage */
1734 /* Data corresponding to <System /> */
1735 static int cna_handle_system_data (const char *hostname, /* {{{ */
1736 cfg_system_t *cfg_system, na_elem_t *data, int interval)
1738 na_elem_t *instances;
1740 na_elem_iter_t counter_iter;
1742 derive_t disk_read = 0, disk_written = 0;
1743 derive_t net_recv = 0, net_sent = 0;
1744 derive_t cpu_busy = 0, cpu_total = 0;
1745 uint32_t counter_flags = 0;
1747 const char *instance;
1750 timestamp = cna_child_get_cdtime (data);
1752 instances = na_elem_child(na_elem_child (data, "instances"), "instance-data");
1753 if (instances == NULL)
1755 ERROR ("netapp plugin: cna_handle_system_data: "
1756 "na_elem_child (\"instances\") failed "
1757 "for host %s.", hostname);
1761 instance = na_child_get_string (instances, "name");
1762 if (instance == NULL)
1764 ERROR ("netapp plugin: cna_handle_system_data: "
1765 "na_child_get_string (\"name\") failed "
1766 "for host %s.", hostname);
1770 counter_iter = na_child_iterator (na_elem_child (instances, "counters"));
1771 for (counter = na_iterator_next (&counter_iter);
1773 counter = na_iterator_next (&counter_iter))
1778 name = na_child_get_string(counter, "name");
1782 value = na_child_get_uint64(counter, "value", UINT64_MAX);
1783 if (value == UINT64_MAX)
1786 if (!strcmp(name, "disk_data_read")) {
1787 disk_read = (derive_t) (value * 1024);
1788 counter_flags |= 0x01;
1789 } else if (!strcmp(name, "disk_data_written")) {
1790 disk_written = (derive_t) (value * 1024);
1791 counter_flags |= 0x02;
1792 } else if (!strcmp(name, "net_data_recv")) {
1793 net_recv = (derive_t) (value * 1024);
1794 counter_flags |= 0x04;
1795 } else if (!strcmp(name, "net_data_sent")) {
1796 net_sent = (derive_t) (value * 1024);
1797 counter_flags |= 0x08;
1798 } else if (!strcmp(name, "cpu_busy")) {
1799 cpu_busy = (derive_t) value;
1800 counter_flags |= 0x10;
1801 } else if (!strcmp(name, "cpu_elapsed_time")) {
1802 cpu_total = (derive_t) value;
1803 counter_flags |= 0x20;
1804 } else if ((cfg_system->flags & CFG_SYSTEM_OPS)
1805 && (value > 0) && (strlen(name) > 4)
1806 && (!strcmp(name + strlen(name) - 4, "_ops"))) {
1807 submit_derive (hostname, instance, "disk_ops_complex", name,
1808 (derive_t) value, timestamp, interval);
1810 } /* for (counter) */
1812 if ((cfg_system->flags & CFG_SYSTEM_DISK)
1813 && (HAS_ALL_FLAGS (counter_flags, 0x01 | 0x02)))
1814 submit_two_derive (hostname, instance, "disk_octets", NULL,
1815 disk_read, disk_written, timestamp, interval);
1817 if ((cfg_system->flags & CFG_SYSTEM_NET)
1818 && (HAS_ALL_FLAGS (counter_flags, 0x04 | 0x08)))
1819 submit_two_derive (hostname, instance, "if_octets", NULL,
1820 net_recv, net_sent, timestamp, interval);
1822 if ((cfg_system->flags & CFG_SYSTEM_CPU)
1823 && (HAS_ALL_FLAGS (counter_flags, 0x10 | 0x20)))
1825 submit_derive (hostname, instance, "cpu", "system",
1826 cpu_busy, timestamp, interval);
1827 submit_derive (hostname, instance, "cpu", "idle",
1828 cpu_total - cpu_busy, timestamp, interval);
1832 } /* }}} int cna_handle_system_data */
1834 static int cna_setup_system (cfg_system_t *cs) /* {{{ */
1839 if (cs->query != NULL)
1842 cs->query = na_elem_new ("perf-object-get-instances");
1843 if (cs->query == NULL)
1845 ERROR ("netapp plugin: na_elem_new failed.");
1848 na_child_add_string (cs->query, "objectname", "system");
1851 } /* }}} int cna_setup_system */
1853 static int cna_query_system (host_config_t *host) /* {{{ */
1862 /* If system statistics were not configured, return without doing anything. */
1863 if (host->cfg_system == NULL)
1867 if ((host->cfg_system->interval.interval + host->cfg_system->interval.last_read) > now)
1870 status = cna_setup_system (host->cfg_system);
1873 assert (host->cfg_system->query != NULL);
1875 data = na_server_invoke_elem(host->srv, host->cfg_system->query);
1876 if (na_results_status (data) != NA_OK)
1878 ERROR ("netapp plugin: cna_query_system: na_server_invoke_elem failed for host %s: %s",
1879 host->name, na_results_reason (data));
1880 na_elem_free (data);
1884 status = cna_handle_system_data (host->name, host->cfg_system, data, host->interval);
1887 host->cfg_system->interval.last_read = now;
1889 na_elem_free (data);
1891 } /* }}} int cna_query_system */
1894 * Configuration handling
1896 /* Sets a given flag if the boolean argument is true and unsets the flag if it
1897 * is false. On error, the flag-field is not changed. */
1898 static int cna_config_bool_to_flag (const oconfig_item_t *ci, /* {{{ */
1899 uint32_t *flags, uint32_t flag)
1901 if ((ci == NULL) || (flags == NULL))
1904 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_BOOLEAN))
1906 WARNING ("netapp plugin: The %s option needs exactly one boolean argument.",
1911 if (ci->values[0].value.boolean)
1917 } /* }}} int cna_config_bool_to_flag */
1919 /* Handling of the "Interval" option which is allowed in every block. */
1920 static int cna_config_get_interval (const oconfig_item_t *ci, /* {{{ */
1921 cna_interval_t *out_interval)
1926 status = cf_util_get_cdtime (ci, &tmp);
1930 out_interval->interval = tmp;
1931 out_interval->last_read = 0;
1934 } /* }}} int cna_config_get_interval */
1936 /* Handling of the "GetIO", "GetOps" and "GetLatency" options within a
1937 * <VolumePerf /> block. */
1938 static void cna_config_volume_perf_option (cfg_volume_perf_t *cvp, /* {{{ */
1939 const oconfig_item_t *ci)
1944 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
1946 WARNING ("netapp plugin: The %s option requires exactly one string argument.",
1951 name = ci->values[0].value.string;
1953 if (strcasecmp ("GetIO", ci->key) == 0)
1954 il = cvp->il_octets;
1955 else if (strcasecmp ("GetOps", ci->key) == 0)
1956 il = cvp->il_operations;
1957 else if (strcasecmp ("GetLatency", ci->key) == 0)
1958 il = cvp->il_latency;
1962 ignorelist_add (il, name);
1963 } /* }}} void cna_config_volume_perf_option */
1965 /* Handling of the "IgnoreSelectedIO", "IgnoreSelectedOps" and
1966 * "IgnoreSelectedLatency" options within a <VolumePerf /> block. */
1967 static void cna_config_volume_perf_default (cfg_volume_perf_t *cvp, /* {{{ */
1968 const oconfig_item_t *ci)
1972 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_BOOLEAN))
1974 WARNING ("netapp plugin: The %s option requires exactly one string argument.",
1979 if (strcasecmp ("IgnoreSelectedIO", ci->key) == 0)
1980 il = cvp->il_octets;
1981 else if (strcasecmp ("IgnoreSelectedOps", ci->key) == 0)
1982 il = cvp->il_operations;
1983 else if (strcasecmp ("IgnoreSelectedLatency", ci->key) == 0)
1984 il = cvp->il_latency;
1988 if (ci->values[0].value.boolean)
1989 ignorelist_set_invert (il, /* invert = */ 0);
1991 ignorelist_set_invert (il, /* invert = */ 1);
1992 } /* }}} void cna_config_volume_perf_default */
1994 /* Corresponds to a <Disks /> block */
1999 * IgnoreSelectedIO false
2003 * IgnoreSelectedOps false
2007 * IgnoreSelectedLatency false
2010 /* Corresponds to a <VolumePerf /> block */
2011 static int cna_config_volume_performance (host_config_t *host, /* {{{ */
2012 const oconfig_item_t *ci)
2014 cfg_volume_perf_t *cfg_volume_perf;
2017 if ((host == NULL) || (ci == NULL))
2020 if (host->cfg_volume_perf == NULL)
2022 cfg_volume_perf = malloc (sizeof (*cfg_volume_perf));
2023 if (cfg_volume_perf == NULL)
2025 memset (cfg_volume_perf, 0, sizeof (*cfg_volume_perf));
2027 /* Set default flags */
2028 cfg_volume_perf->query = NULL;
2029 cfg_volume_perf->volumes = NULL;
2031 cfg_volume_perf->il_octets = ignorelist_create (/* invert = */ 1);
2032 if (cfg_volume_perf->il_octets == NULL)
2034 sfree (cfg_volume_perf);
2038 cfg_volume_perf->il_operations = ignorelist_create (/* invert = */ 1);
2039 if (cfg_volume_perf->il_operations == NULL)
2041 ignorelist_free (cfg_volume_perf->il_octets);
2042 sfree (cfg_volume_perf);
2046 cfg_volume_perf->il_latency = ignorelist_create (/* invert = */ 1);
2047 if (cfg_volume_perf->il_latency == NULL)
2049 ignorelist_free (cfg_volume_perf->il_octets);
2050 ignorelist_free (cfg_volume_perf->il_operations);
2051 sfree (cfg_volume_perf);
2055 host->cfg_volume_perf = cfg_volume_perf;
2057 cfg_volume_perf = host->cfg_volume_perf;
2059 for (i = 0; i < ci->children_num; ++i) {
2060 oconfig_item_t *item = ci->children + i;
2062 /* if (!item || !item->key || !*item->key) continue; */
2063 if (strcasecmp(item->key, "Interval") == 0)
2064 cna_config_get_interval (item, &cfg_volume_perf->interval);
2065 else if (!strcasecmp(item->key, "GetIO"))
2066 cna_config_volume_perf_option (cfg_volume_perf, item);
2067 else if (!strcasecmp(item->key, "GetOps"))
2068 cna_config_volume_perf_option (cfg_volume_perf, item);
2069 else if (!strcasecmp(item->key, "GetLatency"))
2070 cna_config_volume_perf_option (cfg_volume_perf, item);
2071 else if (!strcasecmp(item->key, "IgnoreSelectedIO"))
2072 cna_config_volume_perf_default (cfg_volume_perf, item);
2073 else if (!strcasecmp(item->key, "IgnoreSelectedOps"))
2074 cna_config_volume_perf_default (cfg_volume_perf, item);
2075 else if (!strcasecmp(item->key, "IgnoreSelectedLatency"))
2076 cna_config_volume_perf_default (cfg_volume_perf, item);
2078 WARNING ("netapp plugin: The option %s is not allowed within "
2079 "`VolumePerf' blocks.", item->key);
2083 } /* }}} int cna_config_volume_performance */
2085 /* Handling of the "GetCapacity" and "GetSnapshot" options within a
2086 * <VolumeUsage /> block. */
2087 static void cna_config_volume_usage_option (cfg_volume_usage_t *cvu, /* {{{ */
2088 const oconfig_item_t *ci)
2093 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
2095 WARNING ("netapp plugin: The %s option requires exactly one string argument.",
2100 name = ci->values[0].value.string;
2102 if (strcasecmp ("GetCapacity", ci->key) == 0)
2103 il = cvu->il_capacity;
2104 else if (strcasecmp ("GetSnapshot", ci->key) == 0)
2105 il = cvu->il_snapshot;
2109 ignorelist_add (il, name);
2110 } /* }}} void cna_config_volume_usage_option */
2112 /* Handling of the "IgnoreSelectedCapacity" and "IgnoreSelectedSnapshot"
2113 * options within a <VolumeUsage /> block. */
2114 static void cna_config_volume_usage_default (cfg_volume_usage_t *cvu, /* {{{ */
2115 const oconfig_item_t *ci)
2119 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_BOOLEAN))
2121 WARNING ("netapp plugin: The %s option requires exactly one string argument.",
2126 if (strcasecmp ("IgnoreSelectedCapacity", ci->key) == 0)
2127 il = cvu->il_capacity;
2128 else if (strcasecmp ("IgnoreSelectedSnapshot", ci->key) == 0)
2129 il = cvu->il_snapshot;
2133 if (ci->values[0].value.boolean)
2134 ignorelist_set_invert (il, /* invert = */ 0);
2136 ignorelist_set_invert (il, /* invert = */ 1);
2137 } /* }}} void cna_config_volume_usage_default */
2139 /* Corresponds to a <Disks /> block */
2140 static int cna_config_disk(host_config_t *host, oconfig_item_t *ci) { /* {{{ */
2141 cfg_disk_t *cfg_disk;
2144 if ((host == NULL) || (ci == NULL))
2147 if (host->cfg_disk == NULL)
2149 cfg_disk = malloc (sizeof (*cfg_disk));
2150 if (cfg_disk == NULL)
2152 memset (cfg_disk, 0, sizeof (*cfg_disk));
2154 /* Set default flags */
2155 cfg_disk->flags = CFG_DISK_ALL;
2156 cfg_disk->query = NULL;
2157 cfg_disk->disks = NULL;
2159 host->cfg_disk = cfg_disk;
2161 cfg_disk = host->cfg_disk;
2163 for (i = 0; i < ci->children_num; ++i) {
2164 oconfig_item_t *item = ci->children + i;
2166 /* if (!item || !item->key || !*item->key) continue; */
2167 if (strcasecmp(item->key, "Interval") == 0)
2168 cna_config_get_interval (item, &cfg_disk->interval);
2169 else if (strcasecmp(item->key, "GetBusy") == 0)
2170 cna_config_bool_to_flag (item, &cfg_disk->flags, CFG_DISK_BUSIEST);
2173 if ((cfg_disk->flags & CFG_DISK_ALL) == 0)
2175 NOTICE ("netapp plugin: All disk related values have been disabled. "
2176 "Collection of per-disk data will be disabled entirely.");
2177 free_cfg_disk (host->cfg_disk);
2178 host->cfg_disk = NULL;
2182 } /* }}} int cna_config_disk */
2184 /* Corresponds to a <WAFL /> block */
2185 static int cna_config_wafl(host_config_t *host, oconfig_item_t *ci) /* {{{ */
2187 cfg_wafl_t *cfg_wafl;
2190 if ((host == NULL) || (ci == NULL))
2193 if (host->cfg_wafl == NULL)
2195 cfg_wafl = malloc (sizeof (*cfg_wafl));
2196 if (cfg_wafl == NULL)
2198 memset (cfg_wafl, 0, sizeof (*cfg_wafl));
2200 /* Set default flags */
2201 cfg_wafl->flags = CFG_WAFL_ALL;
2203 host->cfg_wafl = cfg_wafl;
2205 cfg_wafl = host->cfg_wafl;
2207 for (i = 0; i < ci->children_num; ++i) {
2208 oconfig_item_t *item = ci->children + i;
2210 if (strcasecmp(item->key, "Interval") == 0)
2211 cna_config_get_interval (item, &cfg_wafl->interval);
2212 else if (!strcasecmp(item->key, "GetNameCache"))
2213 cna_config_bool_to_flag (item, &cfg_wafl->flags, CFG_WAFL_NAME_CACHE);
2214 else if (!strcasecmp(item->key, "GetDirCache"))
2215 cna_config_bool_to_flag (item, &cfg_wafl->flags, CFG_WAFL_DIR_CACHE);
2216 else if (!strcasecmp(item->key, "GetBufferCache"))
2217 cna_config_bool_to_flag (item, &cfg_wafl->flags, CFG_WAFL_BUF_CACHE);
2218 else if (!strcasecmp(item->key, "GetInodeCache"))
2219 cna_config_bool_to_flag (item, &cfg_wafl->flags, CFG_WAFL_INODE_CACHE);
2221 WARNING ("netapp plugin: The %s config option is not allowed within "
2222 "`WAFL' blocks.", item->key);
2225 if ((cfg_wafl->flags & CFG_WAFL_ALL) == 0)
2227 NOTICE ("netapp plugin: All WAFL related values have been disabled. "
2228 "Collection of WAFL data will be disabled entirely.");
2229 free_cfg_wafl (host->cfg_wafl);
2230 host->cfg_wafl = NULL;
2234 } /* }}} int cna_config_wafl */
2238 * GetCapacity "vol0"
2239 * GetCapacity "vol1"
2240 * GetCapacity "vol2"
2241 * GetCapacity "vol3"
2242 * GetCapacity "vol4"
2243 * IgnoreSelectedCapacity false
2245 * GetSnapshot "vol0"
2246 * GetSnapshot "vol3"
2247 * GetSnapshot "vol4"
2248 * GetSnapshot "vol7"
2249 * IgnoreSelectedSnapshot false
2252 /* Corresponds to a <VolumeUsage /> block */
2253 static int cna_config_volume_usage(host_config_t *host, /* {{{ */
2254 const oconfig_item_t *ci)
2256 cfg_volume_usage_t *cfg_volume_usage;
2259 if ((host == NULL) || (ci == NULL))
2262 if (host->cfg_volume_usage == NULL)
2264 cfg_volume_usage = malloc (sizeof (*cfg_volume_usage));
2265 if (cfg_volume_usage == NULL)
2267 memset (cfg_volume_usage, 0, sizeof (*cfg_volume_usage));
2269 /* Set default flags */
2270 cfg_volume_usage->query = NULL;
2271 cfg_volume_usage->volumes = NULL;
2273 cfg_volume_usage->il_capacity = ignorelist_create (/* invert = */ 1);
2274 if (cfg_volume_usage->il_capacity == NULL)
2276 sfree (cfg_volume_usage);
2280 cfg_volume_usage->il_snapshot = ignorelist_create (/* invert = */ 1);
2281 if (cfg_volume_usage->il_snapshot == NULL)
2283 ignorelist_free (cfg_volume_usage->il_capacity);
2284 sfree (cfg_volume_usage);
2288 host->cfg_volume_usage = cfg_volume_usage;
2290 cfg_volume_usage = host->cfg_volume_usage;
2292 for (i = 0; i < ci->children_num; ++i) {
2293 oconfig_item_t *item = ci->children + i;
2295 /* if (!item || !item->key || !*item->key) continue; */
2296 if (strcasecmp(item->key, "Interval") == 0)
2297 cna_config_get_interval (item, &cfg_volume_usage->interval);
2298 else if (!strcasecmp(item->key, "GetCapacity"))
2299 cna_config_volume_usage_option (cfg_volume_usage, item);
2300 else if (!strcasecmp(item->key, "GetSnapshot"))
2301 cna_config_volume_usage_option (cfg_volume_usage, item);
2302 else if (!strcasecmp(item->key, "IgnoreSelectedCapacity"))
2303 cna_config_volume_usage_default (cfg_volume_usage, item);
2304 else if (!strcasecmp(item->key, "IgnoreSelectedSnapshot"))
2305 cna_config_volume_usage_default (cfg_volume_usage, item);
2307 WARNING ("netapp plugin: The option %s is not allowed within "
2308 "`VolumeUsage' blocks.", item->key);
2312 } /* }}} int cna_config_volume_usage */
2314 /* Corresponds to a <System /> block */
2315 static int cna_config_system (host_config_t *host, /* {{{ */
2318 cfg_system_t *cfg_system;
2321 if ((host == NULL) || (ci == NULL))
2324 if (host->cfg_system == NULL)
2326 cfg_system = malloc (sizeof (*cfg_system));
2327 if (cfg_system == NULL)
2329 memset (cfg_system, 0, sizeof (*cfg_system));
2331 /* Set default flags */
2332 cfg_system->flags = CFG_SYSTEM_ALL;
2333 cfg_system->query = NULL;
2335 host->cfg_system = cfg_system;
2337 cfg_system = host->cfg_system;
2339 for (i = 0; i < ci->children_num; ++i) {
2340 oconfig_item_t *item = ci->children + i;
2342 if (strcasecmp(item->key, "Interval") == 0) {
2343 cna_config_get_interval (item, &cfg_system->interval);
2344 } else if (!strcasecmp(item->key, "GetCPULoad")) {
2345 cna_config_bool_to_flag (item, &cfg_system->flags, CFG_SYSTEM_CPU);
2346 } else if (!strcasecmp(item->key, "GetInterfaces")) {
2347 cna_config_bool_to_flag (item, &cfg_system->flags, CFG_SYSTEM_NET);
2348 } else if (!strcasecmp(item->key, "GetDiskOps")) {
2349 cna_config_bool_to_flag (item, &cfg_system->flags, CFG_SYSTEM_OPS);
2350 } else if (!strcasecmp(item->key, "GetDiskIO")) {
2351 cna_config_bool_to_flag (item, &cfg_system->flags, CFG_SYSTEM_DISK);
2353 WARNING ("netapp plugin: The %s config option is not allowed within "
2354 "`System' blocks.", item->key);
2358 if ((cfg_system->flags & CFG_SYSTEM_ALL) == 0)
2360 NOTICE ("netapp plugin: All system related values have been disabled. "
2361 "Collection of system data will be disabled entirely.");
2362 free_cfg_system (host->cfg_system);
2363 host->cfg_system = NULL;
2367 } /* }}} int cna_config_system */
2369 /* Corresponds to a <Host /> block. */
2370 static host_config_t *cna_config_host (const oconfig_item_t *ci) /* {{{ */
2372 oconfig_item_t *item;
2373 host_config_t *host;
2377 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
2378 WARNING("netapp plugin: \"Host\" needs exactly one string argument. Ignoring host block.");
2382 host = malloc(sizeof(*host));
2383 memset (host, 0, sizeof (*host));
2385 host->protocol = NA_SERVER_TRANSPORT_HTTPS;
2387 host->username = NULL;
2388 host->password = NULL;
2390 host->cfg_wafl = NULL;
2391 host->cfg_disk = NULL;
2392 host->cfg_volume_perf = NULL;
2393 host->cfg_volume_usage = NULL;
2394 host->cfg_system = NULL;
2396 status = cf_util_get_string (ci, &host->name);
2403 for (i = 0; i < ci->children_num; ++i) {
2404 item = ci->children + i;
2408 if (!strcasecmp(item->key, "Address")) {
2409 status = cf_util_get_string (item, &host->host);
2410 } else if (!strcasecmp(item->key, "Port")) {
2413 tmp = cf_util_get_port_number (item);
2416 } else if (!strcasecmp(item->key, "Protocol")) {
2417 if ((item->values_num != 1) || (item->values[0].type != OCONFIG_TYPE_STRING) || (strcasecmp(item->values[0].value.string, "http") && strcasecmp(item->values[0].value.string, "https"))) {
2418 WARNING("netapp plugin: \"Protocol\" needs to be either \"http\" or \"https\". Ignoring host block \"%s\".", ci->values[0].value.string);
2421 if (!strcasecmp(item->values[0].value.string, "http")) host->protocol = NA_SERVER_TRANSPORT_HTTP;
2422 else host->protocol = NA_SERVER_TRANSPORT_HTTPS;
2423 } else if (!strcasecmp(item->key, "User")) {
2424 status = cf_util_get_string (item, &host->username);
2425 } else if (!strcasecmp(item->key, "Password")) {
2426 status = cf_util_get_string (item, &host->password);
2427 } else if (!strcasecmp(item->key, "Interval")) {
2428 status = cf_util_get_cdtime (item, &host->interval);
2429 } else if (!strcasecmp(item->key, "WAFL")) {
2430 cna_config_wafl(host, item);
2431 } else if (!strcasecmp(item->key, "Disks")) {
2432 cna_config_disk(host, item);
2433 } else if (!strcasecmp(item->key, "VolumePerf")) {
2434 cna_config_volume_performance(host, item);
2435 } else if (!strcasecmp(item->key, "VolumeUsage")) {
2436 cna_config_volume_usage(host, item);
2437 } else if (!strcasecmp(item->key, "System")) {
2438 cna_config_system(host, item);
2440 WARNING("netapp plugin: Ignoring unknown config option \"%s\" in host block \"%s\".",
2441 item->key, ci->values[0].value.string);
2448 if (host->host == NULL)
2449 host->host = strdup (host->name);
2451 if (host->host == NULL)
2454 if (host->port <= 0)
2455 host->port = (host->protocol == NA_SERVER_TRANSPORT_HTTP) ? 80 : 443;
2457 if ((host->username == NULL) || (host->password == NULL)) {
2458 WARNING("netapp plugin: Please supply login information for host \"%s\". "
2459 "Ignoring host block.", host->name);
2465 free_host_config (host);
2470 } /* }}} host_config_t *cna_config_host */
2473 * Callbacks registered with the daemon
2475 * Pretty standard stuff here.
2477 static int cna_init_host (host_config_t *host) /* {{{ */
2482 if (host->srv != NULL)
2485 /* Request version 1.1 of the ONTAP API */
2486 host->srv = na_server_open(host->host,
2487 /* major version = */ 1, /* minor version = */ 1);
2488 if (host->srv == NULL) {
2489 ERROR ("netapp plugin: na_server_open (%s) failed.", host->host);
2493 na_server_set_transport_type(host->srv, host->protocol,
2494 /* transportarg = */ NULL);
2495 na_server_set_port(host->srv, host->port);
2496 na_server_style(host->srv, NA_STYLE_LOGIN_PASSWORD);
2497 na_server_adminuser(host->srv, host->username, host->password);
2498 na_server_set_timeout(host->srv, 5 /* seconds */);
2501 } /* }}} int cna_init_host */
2503 static int cna_init (void) /* {{{ */
2507 memset (err, 0, sizeof (err));
2508 if (!na_startup(err, sizeof(err))) {
2509 err[sizeof (err) - 1] = 0;
2510 ERROR("netapp plugin: Error initializing netapp API: %s", err);
2515 } /* }}} cna_init */
2517 static int cna_read (user_data_t *ud) { /* {{{ */
2518 host_config_t *host;
2521 if ((ud == NULL) || (ud->data == NULL))
2526 status = cna_init_host (host);
2530 cna_query_wafl (host);
2531 cna_query_disk (host);
2532 cna_query_volume_perf (host);
2533 cna_query_volume_usage (host);
2534 cna_query_system (host);
2537 } /* }}} int cna_read */
2539 static int cna_config (oconfig_item_t *ci) { /* {{{ */
2541 oconfig_item_t *item;
2543 for (i = 0; i < ci->children_num; ++i) {
2544 item = ci->children + i;
2546 if (strcasecmp(item->key, "Host") == 0)
2548 host_config_t *host;
2550 struct timespec interval;
2553 host = cna_config_host (item);
2557 ssnprintf (cb_name, sizeof (cb_name), "netapp-%s", host->name);
2559 CDTIME_T_TO_TIMESPEC (host->interval, &interval);
2561 memset (&ud, 0, sizeof (ud));
2563 ud.free_func = (void (*) (void *)) free_host_config;
2565 plugin_register_complex_read (/* group = */ NULL, cb_name,
2566 /* callback = */ cna_read,
2567 /* interval = */ (host->interval > 0) ? &interval : NULL,
2568 /* user data = */ &ud);
2571 else /* if (item->key != "Host") */
2573 WARNING("netapp plugin: Ignoring unknown config option \"%s\".", item->key);
2577 } /* }}} int cna_config */
2579 static int cna_shutdown (void) /* {{{ */
2581 /* Clean up system resources and stuff. */
2585 } /* }}} int cna_shutdown */
2587 void module_register(void) {
2588 plugin_register_complex_config("netapp", cna_config);
2589 plugin_register_init("netapp", cna_init);
2590 plugin_register_shutdown("netapp", cna_shutdown);
2593 /* vim: set sw=2 ts=2 noet fdm=marker : */