Merge pull request #1830 from rubenk/move-collectd-header
[collectd.git] / src / write_riemann_threshold.c
1 /**
2  * collectd - src/threshold.c
3  * Copyright (C) 2007-2010  Florian Forster
4  * Copyright (C) 2008-2009  Sebastian Harl
5  * Copyright (C) 2009       Andrés J. Díaz
6  * Copyright (C) 2014       Pierre-Yves Ritschard
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License as published by the
10  * Free Software Foundation; only version 2 of the License is applicable.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  *
21  * Author:
22  *   Pierre-Yves Ritschard <pyr at spootnik.org>
23  *   Florian octo Forster <octo at collectd.org>
24  *   Sebastian Harl <sh at tokkee.org>
25  *   Andrés J. Díaz <ajdiaz at connectical.com>
26  **/
27
28 #include "collectd.h"
29
30 #include "common.h"
31 #include "plugin.h"
32 #include "utils_avltree.h"
33 #include "utils_cache.h"
34 #include "utils_threshold.h"
35 #include "write_riemann_threshold.h"
36
37 /*
38  * Threshold management
39  * ====================
40  * The following functions add, delete, etc. configured thresholds to
41  * the underlying AVL trees.
42  */
43
44 /*
45  * int ut_check_one_data_source
46  *
47  * Checks one data source against the given threshold configuration. If the
48  * `DataSource' option is set in the threshold, and the name does NOT match,
49  * `okay' is returned. If the threshold does match, its failure and warning
50  * min and max values are checked and `failure' or `warning' is returned if
51  * appropriate.
52  * Does not fail.
53  */
54 static int ut_check_one_data_source (const data_set_t *ds,
55     const value_list_t __attribute__((unused)) *vl,
56     const threshold_t *th,
57     const gauge_t *values,
58     int ds_index)
59 { /* {{{ */
60   const char *ds_name;
61   int is_warning = 0;
62   int is_failure = 0;
63   int prev_state = STATE_OKAY;
64
65   /* check if this threshold applies to this data source */
66   if (ds != NULL)
67   {
68     ds_name = ds->ds[ds_index].name;
69     if ((th->data_source[0] != 0)
70         && (strcmp (ds_name, th->data_source) != 0))
71       return (STATE_OKAY);
72   }
73
74   if ((th->flags & UT_FLAG_INVERT) != 0)
75   {
76     is_warning--;
77     is_failure--;
78   }
79
80   /* XXX: This is an experimental code, not optimized, not fast, not reliable,
81    * and probably, do not work as you expect. Enjoy! :D */
82   if ( (th->hysteresis > 0) && ((prev_state = uc_get_state(ds,vl)) != STATE_OKAY) )
83   {
84     switch(prev_state)
85     {
86       case STATE_ERROR:
87         if ( (!isnan (th->failure_min) && ((th->failure_min + th->hysteresis) < values[ds_index])) ||
88              (!isnan (th->failure_max) && ((th->failure_max - th->hysteresis) > values[ds_index])) )
89           return (STATE_OKAY);
90         else
91           is_failure++;
92       case STATE_WARNING:
93         if ( (!isnan (th->warning_min) && ((th->warning_min + th->hysteresis) < values[ds_index])) ||
94              (!isnan (th->warning_max) && ((th->warning_max - th->hysteresis) > values[ds_index])) )
95           return (STATE_OKAY);
96         else
97           is_warning++;
98      }
99   }
100   else { /* no hysteresis */
101     if ((!isnan (th->failure_min) && (th->failure_min > values[ds_index]))
102         || (!isnan (th->failure_max) && (th->failure_max < values[ds_index])))
103       is_failure++;
104
105     if ((!isnan (th->warning_min) && (th->warning_min > values[ds_index]))
106         || (!isnan (th->warning_max) && (th->warning_max < values[ds_index])))
107       is_warning++;
108  }
109
110   if (is_failure != 0)
111     return (STATE_ERROR);
112
113   if (is_warning != 0)
114     return (STATE_WARNING);
115
116   return (STATE_OKAY);
117 } /* }}} int ut_check_one_data_source */
118
119 /*
120  * int ut_check_one_threshold
121  *
122  * Checks all data sources of a value list against the given threshold, using
123  * the ut_check_one_data_source function above. Returns the worst status,
124  * which is `okay' if nothing has failed.
125  * Returns less than zero if the data set doesn't have any data sources.
126  */
127 static int ut_check_one_threshold (const data_set_t *ds,
128     const value_list_t *vl,
129     const threshold_t *th,
130     const gauge_t *values,
131     int *statuses)
132 { /* {{{ */
133   int ret = -1;
134   size_t i;
135   int status;
136   gauge_t values_copy[ds->ds_num];
137
138   memcpy (values_copy, values, sizeof (values_copy));
139
140   if ((th->flags & UT_FLAG_PERCENTAGE) != 0)
141   {
142     int num = 0;
143     gauge_t sum=0.0;
144
145     if (ds->ds_num == 1)
146     {
147       WARNING ("ut_check_one_threshold: The %s type has only one data "
148           "source, but you have configured to check this as a percentage. "
149           "That doesn't make much sense, because the percentage will always "
150           "be 100%%!", ds->type);
151     }
152
153     /* Prepare `sum' and `num'. */
154     for (i = 0; i < ds->ds_num; i++)
155       if (!isnan (values[i]))
156       {
157         num++;
158         sum += values[i];
159       }
160
161     if ((num == 0) /* All data sources are undefined. */
162         || (sum == 0.0)) /* Sum is zero, cannot calculate percentage. */
163     {
164       for (i = 0; i < ds->ds_num; i++)
165         values_copy[i] = NAN;
166     }
167     else /* We can actually calculate the percentage. */
168     {
169       for (i = 0; i < ds->ds_num; i++)
170         values_copy[i] = 100.0 * values[i] / sum;
171     }
172   } /* if (UT_FLAG_PERCENTAGE) */
173
174   for (i = 0; i < ds->ds_num; i++)
175   {
176     status = ut_check_one_data_source (ds, vl, th, values_copy, i);
177     if (status != -1) {
178             ret = 0;
179             if (statuses[i] < status)
180                     statuses[i] = status;
181     }
182   } /* for (ds->ds_num) */
183
184   return (ret);
185 } /* }}} int ut_check_one_threshold */
186
187 /*
188  * int ut_check_threshold
189  *
190  * Gets a list of matching thresholds and searches for the worst status by one
191  * of the thresholds. Then reports that status using the ut_report_state
192  * function above.
193  * Returns zero on success and if no threshold has been configured. Returns
194  * less than zero on failure.
195  */
196 int write_riemann_threshold_check (const data_set_t *ds, const value_list_t *vl,
197                                    int *statuses)
198 { /* {{{ */
199   threshold_t *th;
200   gauge_t *values;
201   int status;
202
203   assert (vl->values_len > 0);
204   memset(statuses, 0, vl->values_len * sizeof(*statuses));
205
206   if (threshold_tree == NULL)
207           return 0;
208
209   /* Is this lock really necessary? So far, thresholds are only inserted at
210    * startup. -octo */
211   pthread_mutex_lock (&threshold_lock);
212   th = threshold_search (vl);
213   pthread_mutex_unlock (&threshold_lock);
214   if (th == NULL)
215           return (0);
216
217   DEBUG ("ut_check_threshold: Found matching threshold(s)");
218
219   values = uc_get_rate (ds, vl);
220   if (values == NULL)
221           return (0);
222
223   while (th != NULL)
224   {
225     status = ut_check_one_threshold (ds, vl, th, values, statuses);
226     if (status < 0)
227     {
228       ERROR ("ut_check_threshold: ut_check_one_threshold failed.");
229       sfree (values);
230       return (-1);
231     }
232
233     th = th->next;
234   } /* while (th) */
235
236   sfree (values);
237
238   return (0);
239 } /* }}} int ut_check_threshold */
240
241
242 /* vim: set sw=2 ts=8 sts=2 tw=78 et fdm=marker : */