collectd-nagios: add new "percentage" aggregate function.
[collectd.git] / src / collectd-nagios.c
1 /**
2  * collectd-nagios - src/collectd-nagios.c
3  * Copyright (C) 2008  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 /* Set to C99 and POSIX code */
23 #ifndef _ISOC99_SOURCE
24 # define _ISOC99_SOURCE
25 #endif
26 #ifndef _POSIX_SOURCE
27 # define _POSIX_SOURCE
28 #endif
29 #ifndef _POSIX_C_SOURCE
30 # define _POSIX_C_SOURCE 200112L
31 #endif
32 #ifndef _REENTRANT
33 # define _REENTRANT
34 #endif
35
36 /* Disable non-standard extensions */
37 #ifdef _BSD_SOURCE
38 # undef _BSD_SOURCE
39 #endif
40 #ifdef _SVID_SOURCE
41 # undef _SVID_SOURCE
42 #endif
43 #ifdef _GNU_SOURCE
44 # undef _GNU_SOURCE
45 #endif
46
47 #if !defined(__GNUC__) || !__GNUC__
48 # define __attribute__(x) /**/
49 #endif
50
51 #include "config.h"
52
53 #include <stdlib.h>
54 #include <unistd.h>
55 #include <stdio.h>
56 #include <errno.h>
57 #include <string.h>
58 #include <strings.h>
59 #include <assert.h>
60
61 #include <sys/socket.h>
62 #include <sys/un.h>
63
64 #include "libcollectdclient/client.h"
65
66 /*
67  * This is copied directly from collectd.h. Make changes there!
68  */
69 #if NAN_STATIC_DEFAULT
70 # include <math.h>
71 /* #endif NAN_STATIC_DEFAULT*/
72 #elif NAN_STATIC_ISOC
73 # ifndef __USE_ISOC99
74 #  define DISABLE_ISOC99 1
75 #  define __USE_ISOC99 1
76 # endif /* !defined(__USE_ISOC99) */
77 # include <math.h>
78 # if DISABLE_ISOC99
79 #  undef DISABLE_ISOC99
80 #  undef __USE_ISOC99
81 # endif /* DISABLE_ISOC99 */
82 /* #endif NAN_STATIC_ISOC */
83 #elif NAN_ZERO_ZERO
84 # include <math.h>
85 # ifdef NAN
86 #  undef NAN
87 # endif
88 # define NAN (0.0 / 0.0)
89 # ifndef isnan
90 #  define isnan(f) ((f) != (f))
91 # endif /* !defined(isnan) */
92 #endif /* NAN_ZERO_ZERO */
93
94 #define RET_OKAY     0
95 #define RET_WARNING  1
96 #define RET_CRITICAL 2
97 #define RET_UNKNOWN  3
98
99 #define CON_NONE     0
100 #define CON_AVERAGE  1
101 #define CON_SUM      2
102 #define CON_PERCENTAGE  3
103
104 struct range_s
105 {
106         double min;
107         double max;
108         int    invert;
109 };
110 typedef struct range_s range_t;
111
112 extern char *optarg;
113 extern int optind, opterr, optopt;
114
115 static char *socket_file_g = NULL;
116 static char *value_string_g = NULL;
117 static char *hostname_g = NULL;
118
119 static range_t range_critical_g;
120 static range_t range_warning_g;
121 static int consolitation_g = CON_NONE;
122
123 static char **match_ds_g = NULL;
124 static int    match_ds_num_g = 0;
125
126 /* `strdup' is an XSI extension. I don't want to pull in all of XSI just for
127  * that, so here's an own implementation.. It's easy enough. The GCC attributes
128  * are supposed to get good performance..  -octo */
129 __attribute__((malloc, nonnull (1)))
130 static char *cn_strdup (const char *str) /* {{{ */
131 {
132   size_t strsize;
133   char *ret;
134
135   strsize = strlen (str) + 1;
136   ret = (char *) malloc (strsize);
137   if (ret != NULL)
138     memcpy (ret, str, strsize);
139   return (ret);
140 } /* }}} char *cn_strdup */
141
142 static int filter_ds (size_t *values_num,
143                 double **values, char ***values_names)
144 {
145         gauge_t *new_values;
146         char   **new_names;
147
148         size_t i;
149
150         if (match_ds_g == NULL)
151                 return (RET_OKAY);
152
153         new_values = (gauge_t *)calloc (match_ds_num_g, sizeof (*new_values));
154         if (new_values == NULL)
155         {
156                 fprintf (stderr, "malloc failed: %s\n", strerror (errno));
157                 return (RET_UNKNOWN);
158         }
159
160         new_names = (char **)calloc (match_ds_num_g, sizeof (*new_names));
161         if (new_names == NULL)
162         {
163                 fprintf (stderr, "malloc failed: %s\n", strerror (errno));
164                 free (new_values);
165                 return (RET_UNKNOWN);
166         }
167
168         for (i = 0; i < match_ds_num_g; i++)
169         {
170                 size_t j;
171
172                 /* match_ds_g keeps pointers into argv but the names will be freed */
173                 new_names[i] = cn_strdup (match_ds_g[i]);
174                 if (new_names[i] == NULL)
175                 {
176                         fprintf (stderr, "cn_strdup failed: %s\n", strerror (errno));
177                         free (new_values);
178                         for (j = 0; j < i; j++)
179                                 free (new_names[j]);
180                         free (new_names);
181                         return (RET_UNKNOWN);
182                 }
183
184                 for (j = 0; j < *values_num; j++)
185                         if (strcasecmp (new_names[i], (*values_names)[j]) == 0)
186                                 break;
187
188                 if (j == *values_num)
189                 {
190                         printf ("ERROR: DS `%s' is not available.\n", new_names[i]);
191                         free (new_values);
192                         for (j = 0; j <= i; j++)
193                                 free (new_names[j]);
194                         free (new_names);
195                         return (RET_CRITICAL);
196                 }
197
198                 new_values[i] = (*values)[j];
199         }
200
201         free (*values);
202         for (i = 0; i < *values_num; i++)
203                 free ((*values_names)[i]);
204         free (*values_names);
205
206         *values       = new_values;
207         *values_names = new_names;
208         *values_num   = match_ds_num_g;
209         return (RET_OKAY);
210 } /* int filter_ds */
211
212 static void parse_range (char *string, range_t *range)
213 {
214         char *min_ptr;
215         char *max_ptr;
216
217         if (*string == '@')
218         {
219                 range->invert = 1;
220                 string++;
221         }
222
223         max_ptr = strchr (string, ':');
224         if (max_ptr == NULL)
225         {
226                 min_ptr = NULL;
227                 max_ptr = string;
228         }
229         else
230         {
231                 min_ptr = string;
232                 *max_ptr = '\0';
233                 max_ptr++;
234         }
235
236         assert (max_ptr != NULL);
237
238         /* `10' == `0:10' */
239         if (min_ptr == NULL)
240                 range->min = 0.0;
241         /* :10 == ~:10 == -inf:10 */
242         else if ((*min_ptr == '\0') || (*min_ptr == '~'))
243                 range->min = NAN;
244         else
245                 range->min = atof (min_ptr);
246
247         if ((*max_ptr == '\0') || (*max_ptr == '~'))
248                 range->max = NAN;
249         else
250                 range->max = atof (max_ptr);
251 } /* void parse_range */
252
253 static int match_range (range_t *range, double value)
254 {
255         int ret = 0;
256
257         if (!isnan (range->min) && (range->min > value))
258                 ret = 1;
259         if (!isnan (range->max) && (range->max < value))
260                 ret = 1;
261
262         return (((ret - range->invert) == 0) ? 0 : 1);
263 } /* int match_range */
264
265 static void usage (const char *name)
266 {
267         fprintf (stderr, "Usage: %s <-s socket> <-n value_spec> <-H hostname> [options]\n"
268                         "\n"
269                         "Valid options are:\n"
270                         "  -s <socket>    Path to collectd's UNIX-socket.\n"
271                         "  -n <v_spec>    Value specification to get from collectd.\n"
272                         "                 Format: `plugin-instance/type-instance'\n"
273                         "  -d <ds>        Select the DS to examine. May be repeated to examine multiple\n"
274                         "                 DSes. By default all DSes are used.\n"
275                         "  -g <consol>    Method to use to consolidate several DSes.\n"
276                         "                 Valid arguments are `none', `average' and `sum'\n"
277                         "  -H <host>      Hostname to query the values for.\n"
278                         "  -c <range>     Critical range\n"
279                         "  -w <range>     Warning range\n"
280                         "\n"
281                         "Consolidation functions:\n"
282                         "  none:          Apply the warning- and critical-ranges to each data-source\n"
283                         "                 individually.\n"
284                         "  average:       Calculate the average of all matching DSes and apply the\n"
285                         "                 warning- and critical-ranges to the calculated average.\n"
286                         "  sum:           Apply the ranges to the sum of all DSes.\n"
287                         "\n", name);
288         exit (1);
289 } /* void usage */
290
291 static int do_check_con_none (size_t values_num,
292                 double *values, char **values_names)
293 {
294         int num_critical = 0;
295         int num_warning  = 0;
296         int num_okay = 0;
297         const char *status_str = "UNKNOWN";
298         int status_code = RET_UNKNOWN;
299         int i;
300
301         for (i = 0; i < values_num; i++)
302         {
303                 if (isnan (values[i]))
304                         num_warning++;
305                 else if (match_range (&range_critical_g, values[i]) != 0)
306                         num_critical++;
307                 else if (match_range (&range_warning_g, values[i]) != 0)
308                         num_warning++;
309                 else
310                         num_okay++;
311         }
312
313         if ((num_critical == 0) && (num_warning == 0) && (num_okay == 0))
314         {
315                 printf ("WARNING: No defined values found\n");
316                 return (RET_WARNING);
317         }
318         else if ((num_critical == 0) && (num_warning == 0))
319         {
320                 status_str = "OKAY";
321                 status_code = RET_OKAY;
322         }
323         else if (num_critical == 0)
324         {
325                 status_str = "WARNING";
326                 status_code = RET_WARNING;
327         }
328         else
329         {
330                 status_str = "CRITICAL";
331                 status_code = RET_CRITICAL;
332         }
333
334         printf ("%s: %i critical, %i warning, %i okay", status_str,
335                         num_critical, num_warning, num_okay);
336         if (values_num > 0)
337         {
338                 printf (" |");
339                 for (i = 0; i < values_num; i++)
340                         printf (" %s=%g;;;;", values_names[i], values[i]);
341         }
342         printf ("\n");
343
344         return (status_code);
345 } /* int do_check_con_none */
346
347 static int do_check_con_average (size_t values_num,
348                 double *values, char **values_names)
349 {
350         int i;
351         double total;
352         int total_num;
353         double average;
354         const char *status_str = "UNKNOWN";
355         int status_code = RET_UNKNOWN;
356
357         total = 0.0;
358         total_num = 0;
359         for (i = 0; i < values_num; i++)
360         {
361                 if (!isnan (values[i]))
362                 {
363                         total += values[i];
364                         total_num++;
365                 }
366         }
367
368         if (total_num == 0)
369         {
370                 printf ("WARNING: No defined values found\n");
371                 return (RET_WARNING);
372         }
373
374         average = total / total_num;
375
376         if (match_range (&range_critical_g, average) != 0)
377         {
378                 status_str = "CRITICAL";
379                 status_code = RET_CRITICAL;
380         }
381         else if (match_range (&range_warning_g, average) != 0)
382         {
383                 status_str = "WARNING";
384                 status_code = RET_WARNING;
385         }
386         else
387         {
388                 status_str = "OKAY";
389                 status_code = RET_OKAY;
390         }
391
392         printf ("%s: %g average |", status_str, average);
393         for (i = 0; i < values_num; i++)
394                 printf (" %s=%g;;;;", values_names[i], values[i]);
395         printf ("\n");
396
397         return (status_code);
398 } /* int do_check_con_average */
399
400 static int do_check_con_sum (size_t values_num,
401                 double *values, char **values_names)
402 {
403         int i;
404         double total;
405         int total_num;
406         const char *status_str = "UNKNOWN";
407         int status_code = RET_UNKNOWN;
408
409         total = 0.0;
410         total_num = 0;
411         for (i = 0; i < values_num; i++)
412         {
413                 if (!isnan (values[i]))
414                 {
415                         total += values[i];
416                         total_num++;
417                 }
418         }
419
420         if (total_num == 0)
421         {
422                 printf ("WARNING: No defined values found\n");
423                 return (RET_WARNING);
424         }
425
426         if (match_range (&range_critical_g, total) != 0)
427         {
428                 status_str = "CRITICAL";
429                 status_code = RET_CRITICAL;
430         }
431         else if (match_range (&range_warning_g, total) != 0)
432         {
433                 status_str = "WARNING";
434                 status_code = RET_WARNING;
435         }
436         else
437         {
438                 status_str = "OKAY";
439                 status_code = RET_OKAY;
440         }
441
442         printf ("%s: %g sum |", status_str, total);
443         for (i = 0; i < values_num; i++)
444                 printf (" %s=%g;;;;", values_names[i], values[i]);
445         printf ("\n");
446
447         return (status_code);
448 } /* int do_check_con_sum */
449
450 static int do_check_con_percentage (int values_num, double *values, char **values_names)
451 {
452         int i;
453         double percentage;
454
455         if (values_num != 2)
456                 return (RET_WARNING);
457         if (isnan (values[0]) || isnan (values[1]))
458                 return (RET_WARNING);
459         if ((values[0] + values[1]) == 0)
460                 return (RET_WARNING);
461
462         percentage = 100 * values[1] / ( values[0] + values[1] );
463
464         printf ("%lf percentage |", percentage);
465         for (i = 0; i < values_num; i++)
466                 printf (" %s=%lf;;;;", values_names[i], values[i]);
467
468         if (match_range (&range_critical_g, percentage) != 0)
469         {
470                 printf ("CRITICAL: percentage = %lf\n", percentage);
471                 return (RET_CRITICAL);
472         }
473         else if (match_range (&range_warning_g, percentage) != 0)
474         {
475                 printf ("WARNING: percentage = %lf\n", percentage);
476                 return (RET_WARNING);
477         }
478
479         printf ("OKAY: percentage = %lf\n", percentage);
480         return (RET_OKAY);
481 } /* int do_check_con_percentage */
482
483 static int do_check (void)
484 {
485         lcc_connection_t *connection;
486         gauge_t *values;
487         char   **values_names;
488         size_t   values_num;
489         char address[1024];
490         char ident_str[1024];
491         lcc_identifier_t ident;
492         size_t i;
493         int status;
494
495         snprintf (address, sizeof (address), "unix:%s", socket_file_g);
496         address[sizeof (address) - 1] = 0;
497
498         snprintf (ident_str, sizeof (ident_str), "%s/%s",
499                         hostname_g, value_string_g);
500         ident_str[sizeof (ident_str) - 1] = 0;
501
502         connection = NULL;
503         status = lcc_connect (address, &connection);
504         if (status != 0)
505         {
506                 printf ("ERROR: Connecting to daemon at %s failed.\n",
507                                 socket_file_g);
508                 return (RET_CRITICAL);
509         }
510
511         memset (&ident, 0, sizeof (ident));
512         status = lcc_string_to_identifier (connection, &ident, ident_str);
513         if (status != 0)
514         {
515                 printf ("ERROR: Creating an identifier failed: %s.\n",
516                                 lcc_strerror (connection));
517                 LCC_DESTROY (connection);
518                 return (RET_CRITICAL);
519         }
520
521         status = lcc_getval (connection, &ident,
522                         &values_num, &values, &values_names);
523         if (status != 0)
524         {
525                 printf ("ERROR: Retrieving values from the daemon failed: %s.\n",
526                                 lcc_strerror (connection));
527                 LCC_DESTROY (connection);
528                 return (RET_CRITICAL);
529         }
530
531         LCC_DESTROY (connection);
532
533         status = filter_ds (&values_num, &values, &values_names);
534         if (status != RET_OKAY)
535                 return (status);
536
537         status = RET_UNKNOWN;
538         if (consolitation_g == CON_NONE)
539                 status =  do_check_con_none (values_num, values, values_names);
540         else if (consolitation_g == CON_AVERAGE)
541                 status =  do_check_con_average (values_num, values, values_names);
542         else if (consolitation_g == CON_SUM)
543                 status = do_check_con_sum (values_num, values, values_names);
544         else if (consolitation_g == CON_PERCENTAGE)
545                 status = do_check_con_percentage (values_num, values, values_names);
546
547         free (values);
548         if (values_names != NULL)
549                 for (i = 0; i < values_num; i++)
550                         free (values_names[i]);
551         free (values_names);
552
553         return (status);
554 } /* int do_check */
555
556 int main (int argc, char **argv)
557 {
558         range_critical_g.min = NAN;
559         range_critical_g.max = NAN;
560         range_critical_g.invert = 0;
561
562         range_warning_g.min = NAN;
563         range_warning_g.max = NAN;
564         range_warning_g.invert = 0;
565
566         while (42)
567         {
568                 int c;
569
570                 c = getopt (argc, argv, "w:c:s:n:H:g:d:h");
571                 if (c < 0)
572                         break;
573
574                 switch (c)
575                 {
576                         case 'c':
577                                 parse_range (optarg, &range_critical_g);
578                                 break;
579                         case 'w':
580                                 parse_range (optarg, &range_warning_g);
581                                 break;
582                         case 's':
583                                 socket_file_g = optarg;
584                                 break;
585                         case 'n':
586                                 value_string_g = optarg;
587                                 break;
588                         case 'H':
589                                 hostname_g = optarg;
590                                 break;
591                         case 'g':
592                                 if (strcasecmp (optarg, "none") == 0)
593                                         consolitation_g = CON_NONE;
594                                 else if (strcasecmp (optarg, "average") == 0)
595                                         consolitation_g = CON_AVERAGE;
596                                 else if (strcasecmp (optarg, "sum") == 0)
597                                         consolitation_g = CON_SUM;
598                                 else if (strcasecmp (optarg, "percentage") == 0)
599                                         consolitation_g = CON_PERCENTAGE;
600                                 else
601                                         usage (argv[0]);
602                                 break;
603                         case 'd':
604                         {
605                                 char **tmp;
606                                 tmp = (char **) realloc (match_ds_g,
607                                                 (match_ds_num_g + 1)
608                                                 * sizeof (char *));
609                                 if (tmp == NULL)
610                                 {
611                                         fprintf (stderr, "realloc failed: %s\n",
612                                                         strerror (errno));
613                                         return (RET_UNKNOWN);
614                                 }
615                                 match_ds_g = tmp;
616                                 match_ds_g[match_ds_num_g] = cn_strdup (optarg);
617                                 if (match_ds_g[match_ds_num_g] == NULL)
618                                 {
619                                         fprintf (stderr, "cn_strdup failed: %s\n",
620                                                         strerror (errno));
621                                         return (RET_UNKNOWN);
622                                 }
623                                 match_ds_num_g++;
624                                 break;
625                         }
626                         default:
627                                 usage (argv[0]);
628                 } /* switch (c) */
629         }
630
631         if ((socket_file_g == NULL) || (value_string_g == NULL)
632                         || (hostname_g == NULL))
633                 usage (argv[0]);
634
635         return (do_check ());
636 } /* int main */