Merge pull request #1557 from rpv-tomsk/master
[collectd.git] / src / target_notification.c
1 /**
2  * collectd - src/target_notification.c
3  * Copyright (C) 2008       Florian Forster
4  *
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:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
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.
22  *
23  * Authors:
24  *   Florian Forster <octo at collectd.org>
25  **/
26
27 #include "collectd.h"
28 #include "common.h"
29 #include "filter_chain.h"
30 #include "utils_cache.h"
31 #include "utils_subst.h"
32
33 struct tn_data_s
34 {
35   int severity;
36   char *message;
37 };
38 typedef struct tn_data_s tn_data_t;
39
40 static int tn_config_add_severity (tn_data_t *data, /* {{{ */
41     const oconfig_item_t *ci)
42 {
43   if ((ci->values_num != 1)
44       || (ci->values[0].type != OCONFIG_TYPE_STRING))
45   {
46     ERROR ("Target `notification': The `%s' option requires exactly one string "
47         "argument.", ci->key);
48     return (-1);
49   }
50
51   if ((strcasecmp ("FAILURE", ci->values[0].value.string) == 0)
52       || (strcasecmp ("CRITICAL", ci->values[0].value.string) == 0))
53     data->severity = NOTIF_FAILURE;
54   else if ((strcasecmp ("WARNING", ci->values[0].value.string) == 0)
55       || (strcasecmp ("WARN", ci->values[0].value.string) == 0))
56     data->severity = NOTIF_WARNING;
57   else if (strcasecmp ("OKAY", ci->values[0].value.string) == 0)
58     data->severity = NOTIF_OKAY;
59   else
60   {
61     WARNING ("Target `notification': Unknown severity `%s'. "
62         "Will use `FAILURE' instead.",
63         ci->values[0].value.string);
64     data->severity = NOTIF_FAILURE;
65   }
66
67   return (0);
68 } /* }}} int tn_config_add_severity */
69
70 static int tn_config_add_string (char **dest, /* {{{ */
71     const oconfig_item_t *ci)
72 {
73   char *temp;
74
75   if (dest == NULL)
76     return (-EINVAL);
77
78   if ((ci->values_num != 1)
79       || (ci->values[0].type != OCONFIG_TYPE_STRING))
80   {
81     ERROR ("Target `notification': The `%s' option requires exactly one string "
82         "argument.", ci->key);
83     return (-1);
84   }
85
86   if (ci->values[0].value.string[0] == 0)
87   {
88     ERROR ("Target `notification': The `%s' option does not accept empty strings.",
89         ci->key);
90     return (-1);
91   }
92
93   temp = sstrdup (ci->values[0].value.string);
94   if (temp == NULL)
95   {
96     ERROR ("tn_config_add_string: sstrdup failed.");
97     return (-1);
98   }
99
100   free (*dest);
101   *dest = temp;
102
103   return (0);
104 } /* }}} int tn_config_add_string */
105
106 static int tn_destroy (void **user_data) /* {{{ */
107 {
108   tn_data_t *data;
109
110   if (user_data == NULL)
111     return (-EINVAL);
112
113   data = *user_data;
114   if (data == NULL)
115     return (0);
116
117   sfree (data->message);
118   sfree (data);
119
120   return (0);
121 } /* }}} int tn_destroy */
122
123 static int tn_create (const oconfig_item_t *ci, void **user_data) /* {{{ */
124 {
125   tn_data_t *data;
126   int status;
127   int i;
128
129   data = calloc (1, sizeof (*data));
130   if (data == NULL)
131   {
132     ERROR ("tn_create: calloc failed.");
133     return (-ENOMEM);
134   }
135
136   data->message = NULL;
137   data->severity = 0;
138
139   status = 0;
140   for (i = 0; i < ci->children_num; i++)
141   {
142     oconfig_item_t *child = ci->children + i;
143
144     if (strcasecmp ("Message", child->key) == 0)
145       status = tn_config_add_string (&data->message, child);
146     else if (strcasecmp ("Severity", child->key) == 0)
147       status = tn_config_add_severity (data, child);
148     else
149     {
150       ERROR ("Target `notification': The `%s' configuration option is not understood "
151           "and will be ignored.", child->key);
152       status = 0;
153     }
154
155     if (status != 0)
156       break;
157   }
158
159   /* Additional sanity-checking */
160   while (status == 0)
161   {
162     if ((data->severity != NOTIF_FAILURE)
163         && (data->severity != NOTIF_WARNING)
164         && (data->severity != NOTIF_OKAY))
165     {
166       DEBUG ("Target `notification': Setting "
167           "the default severity `WARNING'.");
168       data->severity = NOTIF_WARNING;
169     }
170
171     if (data->message == NULL)
172     {
173       ERROR ("Target `notification': No `Message' option has been specified. "
174           "Without it, the `Notification' target is useless.");
175       status = -1;
176     }
177
178     break;
179   }
180
181   if (status != 0)
182   {
183     tn_destroy ((void *) &data);
184     return (status);
185   }
186
187   *user_data = data;
188   return (0);
189 } /* }}} int tn_create */
190
191 static int tn_invoke (const data_set_t *ds, value_list_t *vl, /* {{{ */
192     notification_meta_t __attribute__((unused)) **meta, void **user_data)
193 {
194   tn_data_t *data;
195   notification_t n;
196   char temp[NOTIF_MAX_MSG_LEN];
197
198   gauge_t *rates;
199   int rates_failed;
200
201   size_t i;
202
203   if ((ds == NULL) || (vl == NULL) || (user_data == NULL))
204     return (-EINVAL);
205
206   data = *user_data;
207   if (data == NULL)
208   {
209     ERROR ("Target `notification': Invoke: `data' is NULL.");
210     return (-EINVAL);
211   }
212
213   /* Initialize the structure. */
214   memset (&n, 0, sizeof (n));
215   n.severity = data->severity;
216   n.time = cdtime ();
217   sstrncpy (n.message, data->message, sizeof (n.message));
218   sstrncpy (n.host, vl->host, sizeof (n.host));
219   sstrncpy (n.plugin, vl->plugin, sizeof (n.plugin));
220   sstrncpy (n.plugin_instance, vl->plugin_instance,
221       sizeof (n.plugin_instance));
222   sstrncpy (n.type, vl->type, sizeof (n.type));
223   sstrncpy (n.type_instance, vl->type_instance,
224       sizeof (n.type_instance));
225   n.meta = NULL;
226
227 #define REPLACE_FIELD(t,v) \
228   if (subst_string (temp, sizeof (temp), n.message, t, v) != NULL) \
229     sstrncpy (n.message, temp, sizeof (n.message));
230   REPLACE_FIELD ("%{host}", n.host);
231   REPLACE_FIELD ("%{plugin}", n.plugin);
232   REPLACE_FIELD ("%{plugin_instance}", n.plugin_instance);
233   REPLACE_FIELD ("%{type}", n.type);
234   REPLACE_FIELD ("%{type_instance}", n.type_instance);
235
236   rates_failed = 0;
237   rates = NULL;
238   for (i = 0; i < ds->ds_num; i++)
239   {
240     char template[DATA_MAX_NAME_LEN];
241     char value_str[DATA_MAX_NAME_LEN];
242
243     ssnprintf (template, sizeof (template), "%%{ds:%s}", ds->ds[i].name);
244
245     if (ds->ds[i].type != DS_TYPE_GAUGE)
246     {
247       if ((rates == NULL) && (rates_failed == 0))
248       {
249         rates = uc_get_rate (ds, vl);
250         if (rates == NULL)
251           rates_failed = 1;
252       }
253     }
254
255     /* If this is a gauge value, use the current value. */
256     if (ds->ds[i].type == DS_TYPE_GAUGE)
257       ssnprintf (value_str, sizeof (value_str),
258           GAUGE_FORMAT, (double) vl->values[i].gauge);
259     /* If it's a counter, try to use the current rate. This may fail, if the
260      * value has been renamed. */
261     else if (rates != NULL)
262       ssnprintf (value_str, sizeof (value_str),
263           GAUGE_FORMAT, (double) rates[i]);
264     /* Since we don't know any better, use the string `unknown'. */
265     else
266       sstrncpy (value_str, "unknown", sizeof (value_str));
267
268     REPLACE_FIELD (template, value_str);
269   }
270   sfree (rates);
271
272   plugin_dispatch_notification (&n);
273
274   return (FC_TARGET_CONTINUE);
275 } /* }}} int tn_invoke */
276
277 void module_register (void)
278 {
279         target_proc_t tproc;
280
281         memset (&tproc, 0, sizeof (tproc));
282         tproc.create  = tn_create;
283         tproc.destroy = tn_destroy;
284         tproc.invoke  = tn_invoke;
285         fc_register_target ("notification", tproc);
286 } /* module_register */
287
288 /* vim: set sw=2 sts=2 tw=78 et fdm=marker : */
289