Copy MetaData to Riemann events
[collectd.git] / src / write_riemann.c
1 /**
2  * collectd - src/write_riemann.c
3  * Copyright (C) 2012,2013  Pierre-Yves Ritschard
4  * Copyright (C) 2013       Florian octo Forster
5  * Copyright (C) 2015,2016  Gergely Nagy
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a
8  * copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation
10  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11  * and/or sell copies of the Software, and to permit persons to whom the
12  * Software is furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23  * DEALINGS IN THE SOFTWARE.
24  *
25  * Authors:
26  *   Pierre-Yves Ritschard <pyr at spootnik.org>
27  *   Florian octo Forster <octo at collectd.org>
28  *   Gergely Nagy <algernon at madhouse-project.org>
29  */
30
31 #include "collectd.h"
32
33 #include "plugin.h"
34 #include "utils/common/common.h"
35 #include "utils_cache.h"
36 #include "utils_complain.h"
37 #include "write_riemann_threshold.h"
38
39 #include <riemann/riemann-client.h>
40
41 #define RIEMANN_HOST "localhost"
42 #define RIEMANN_PORT 5555
43 #define RIEMANN_TTL_FACTOR 2.0
44 #define RIEMANN_BATCH_MAX 8192
45
46 struct riemann_host {
47   c_complain_t init_complaint;
48   char *name;
49   char *event_service_prefix;
50   pthread_mutex_t lock;
51   bool batch_mode;
52   bool notifications;
53   bool check_thresholds;
54   bool store_rates;
55   bool always_append_ds;
56   char *node;
57   int port;
58   riemann_client_type_t client_type;
59   riemann_client_t *client;
60   double ttl_factor;
61   cdtime_t batch_init;
62   int batch_max;
63   int batch_timeout;
64   int reference_count;
65   riemann_message_t *batch_msg;
66   char *tls_ca_file;
67   char *tls_cert_file;
68   char *tls_key_file;
69   struct timeval timeout;
70 };
71
72 static char **riemann_tags;
73 static size_t riemann_tags_num;
74 static char **riemann_attrs;
75 static size_t riemann_attrs_num;
76
77 /* host->lock must be held when calling this function. */
78 static int wrr_connect(struct riemann_host *host) /* {{{ */
79 {
80   char const *node;
81   int port;
82
83   if (host->client)
84     return 0;
85
86   node = (host->node != NULL) ? host->node : RIEMANN_HOST;
87   port = (host->port) ? host->port : RIEMANN_PORT;
88
89   host->client = NULL;
90
91   host->client = riemann_client_create(
92       host->client_type, node, port, RIEMANN_CLIENT_OPTION_TLS_CA_FILE,
93       host->tls_ca_file, RIEMANN_CLIENT_OPTION_TLS_CERT_FILE,
94       host->tls_cert_file, RIEMANN_CLIENT_OPTION_TLS_KEY_FILE,
95       host->tls_key_file, RIEMANN_CLIENT_OPTION_NONE);
96   if (host->client == NULL) {
97     c_complain(LOG_ERR, &host->init_complaint,
98                "write_riemann plugin: Unable to connect to Riemann at %s:%d",
99                node, port);
100     return -1;
101   }
102 #if RCC_VERSION_NUMBER >= 0x010800
103   if (host->timeout.tv_sec != 0) {
104     if (riemann_client_set_timeout(host->client, &host->timeout) != 0) {
105       riemann_client_free(host->client);
106       host->client = NULL;
107       c_complain(LOG_ERR, &host->init_complaint,
108                  "write_riemann plugin: Unable to connect to Riemann at %s:%d",
109                  node, port);
110       return -1;
111     }
112   }
113 #endif
114
115   set_sock_opts(riemann_client_get_fd(host->client));
116
117   c_release(LOG_INFO, &host->init_complaint,
118             "write_riemann plugin: Successfully connected to %s:%d", node,
119             port);
120
121   return 0;
122 } /* }}} int wrr_connect */
123
124 /* host->lock must be held when calling this function. */
125 static int wrr_disconnect(struct riemann_host *host) /* {{{ */
126 {
127   if (!host->client)
128     return 0;
129
130   riemann_client_free(host->client);
131   host->client = NULL;
132
133   return 0;
134 } /* }}} int wrr_disconnect */
135
136 /**
137  * Function to send messages to riemann.
138  *
139  * Acquires the host lock, disconnects on errors.
140  */
141 static int wrr_send_nolock(struct riemann_host *host,
142                            riemann_message_t *msg) /* {{{ */
143 {
144   int status = 0;
145
146   status = wrr_connect(host);
147   if (status != 0) {
148     return status;
149   }
150
151   status = riemann_client_send_message(host->client, msg);
152   if (status != 0) {
153     wrr_disconnect(host);
154     return status;
155   }
156
157   /*
158    * For TCP we need to receive message acknowledgemenent.
159    */
160   if (host->client_type != RIEMANN_CLIENT_UDP) {
161     riemann_message_t *response;
162
163     response = riemann_client_recv_message(host->client);
164
165     if (response == NULL) {
166       wrr_disconnect(host);
167       return errno;
168     }
169     riemann_message_free(response);
170   }
171
172   return 0;
173 } /* }}} int wrr_send */
174
175 static int wrr_send(struct riemann_host *host, riemann_message_t *msg) {
176   int status = 0;
177
178   pthread_mutex_lock(&host->lock);
179   status = wrr_send_nolock(host, msg);
180   pthread_mutex_unlock(&host->lock);
181   return status;
182 }
183
184 static riemann_message_t *wrr_notification_to_message(notification_t const *n) {
185   riemann_message_t *msg;
186   riemann_event_t *event;
187   char service_buffer[6 * DATA_MAX_NAME_LEN];
188   char const *severity;
189
190   switch (n->severity) {
191   case NOTIF_OKAY:
192     severity = "ok";
193     break;
194   case NOTIF_WARNING:
195     severity = "warning";
196     break;
197   case NOTIF_FAILURE:
198     severity = "critical";
199     break;
200   default:
201     severity = "unknown";
202   }
203
204   format_name(service_buffer, sizeof(service_buffer),
205               /* host = */ "", n->plugin, n->plugin_instance, n->type,
206               n->type_instance);
207
208   event = riemann_event_create(
209       RIEMANN_EVENT_FIELD_HOST, n->host, RIEMANN_EVENT_FIELD_TIME,
210       (int64_t)CDTIME_T_TO_TIME_T(n->time), RIEMANN_EVENT_FIELD_TAGS,
211       "notification", NULL, RIEMANN_EVENT_FIELD_STATE, severity,
212       RIEMANN_EVENT_FIELD_SERVICE, &service_buffer[1],
213       RIEMANN_EVENT_FIELD_NONE);
214
215 #if RCC_VERSION_NUMBER >= 0x010A00
216   riemann_event_set(event, RIEMANN_EVENT_FIELD_TIME_MICROS,
217                     (int64_t)CDTIME_T_TO_US(n->time));
218 #endif
219
220   if (n->host[0] != 0)
221     riemann_event_string_attribute_add(event, "host", n->host);
222   if (n->plugin[0] != 0)
223     riemann_event_string_attribute_add(event, "plugin", n->plugin);
224   if (n->plugin_instance[0] != 0)
225     riemann_event_string_attribute_add(event, "plugin_instance",
226                                        n->plugin_instance);
227
228   if (n->type[0] != 0)
229     riemann_event_string_attribute_add(event, "type", n->type);
230   if (n->type_instance[0] != 0)
231     riemann_event_string_attribute_add(event, "type_instance",
232                                        n->type_instance);
233
234   for (size_t i = 0; i < riemann_attrs_num; i += 2)
235     riemann_event_string_attribute_add(event, riemann_attrs[i],
236                                        riemann_attrs[i + 1]);
237
238   for (size_t i = 0; i < riemann_tags_num; i++)
239     riemann_event_tag_add(event, riemann_tags[i]);
240
241   if (n->message[0] != 0)
242     riemann_event_string_attribute_add(event, "description", n->message);
243
244   /* Pull in values from threshold and add extra attributes */
245   for (notification_meta_t *meta = n->meta; meta != NULL; meta = meta->next) {
246     if (strcasecmp("CurrentValue", meta->name) == 0 &&
247         meta->type == NM_TYPE_DOUBLE) {
248       riemann_event_set(event, RIEMANN_EVENT_FIELD_METRIC_D,
249                         (double)meta->nm_value.nm_double,
250                         RIEMANN_EVENT_FIELD_NONE);
251       continue;
252     }
253
254     if (meta->type == NM_TYPE_STRING) {
255       riemann_event_string_attribute_add(event, meta->name,
256                                          meta->nm_value.nm_string);
257       continue;
258     }
259   }
260
261   msg = riemann_message_create_with_events(event, NULL);
262   if (msg == NULL) {
263     ERROR("write_riemann plugin: riemann_message_create_with_events() failed.");
264     riemann_event_free(event);
265     return NULL;
266   }
267
268   DEBUG("write_riemann plugin: Successfully created message for notification: "
269         "host = \"%s\", service = \"%s\", state = \"%s\"",
270         event->host, event->service, event->state);
271   return msg;
272 }
273
274 static riemann_event_t *
275 wrr_value_to_event(struct riemann_host const *host, /* {{{ */
276                    data_set_t const *ds, value_list_t const *vl, size_t index,
277                    gauge_t const *rates, int status) {
278   riemann_event_t *event;
279   char name_buffer[5 * DATA_MAX_NAME_LEN];
280   char service_buffer[6 * DATA_MAX_NAME_LEN];
281   size_t i;
282
283   event = riemann_event_new();
284   if (event == NULL) {
285     ERROR("write_riemann plugin: riemann_event_new() failed.");
286     return NULL;
287   }
288
289   format_name(name_buffer, sizeof(name_buffer),
290               /* host = */ "", vl->plugin, vl->plugin_instance, vl->type,
291               vl->type_instance);
292   if (host->always_append_ds || (ds->ds_num > 1)) {
293     if (host->event_service_prefix == NULL)
294       snprintf(service_buffer, sizeof(service_buffer), "%s/%s", &name_buffer[1],
295                ds->ds[index].name);
296     else
297       snprintf(service_buffer, sizeof(service_buffer), "%s%s/%s",
298                host->event_service_prefix, &name_buffer[1], ds->ds[index].name);
299   } else {
300     if (host->event_service_prefix == NULL)
301       sstrncpy(service_buffer, &name_buffer[1], sizeof(service_buffer));
302     else
303       snprintf(service_buffer, sizeof(service_buffer), "%s%s",
304                host->event_service_prefix, &name_buffer[1]);
305   }
306
307   riemann_event_set(
308       event, RIEMANN_EVENT_FIELD_HOST, vl->host, RIEMANN_EVENT_FIELD_TIME,
309       (int64_t)CDTIME_T_TO_TIME_T(vl->time), RIEMANN_EVENT_FIELD_TTL,
310       (float)CDTIME_T_TO_DOUBLE(vl->interval) * host->ttl_factor,
311       RIEMANN_EVENT_FIELD_STRING_ATTRIBUTES, "plugin", vl->plugin, "type",
312       vl->type, "ds_name", ds->ds[index].name, NULL,
313       RIEMANN_EVENT_FIELD_SERVICE, service_buffer, RIEMANN_EVENT_FIELD_NONE);
314
315 #if RCC_VERSION_NUMBER >= 0x010A00
316   riemann_event_set(event, RIEMANN_EVENT_FIELD_TIME_MICROS,
317                     (int64_t)CDTIME_T_TO_US(vl->time));
318 #endif
319
320   if (host->check_thresholds) {
321     const char *state = NULL;
322
323     switch (status) {
324     case STATE_OKAY:
325       state = "ok";
326       break;
327     case STATE_ERROR:
328       state = "critical";
329       break;
330     case STATE_WARNING:
331       state = "warning";
332       break;
333     case STATE_MISSING:
334       state = "unknown";
335       break;
336     }
337     if (state)
338       riemann_event_set(event, RIEMANN_EVENT_FIELD_STATE, state,
339                         RIEMANN_EVENT_FIELD_NONE);
340   }
341
342   if (vl->plugin_instance[0] != 0)
343     riemann_event_string_attribute_add(event, "plugin_instance",
344                                        vl->plugin_instance);
345   if (vl->type_instance[0] != 0)
346     riemann_event_string_attribute_add(event, "type_instance",
347                                        vl->type_instance);
348
349   if ((ds->ds[index].type != DS_TYPE_GAUGE) && (rates != NULL)) {
350     char ds_type[DATA_MAX_NAME_LEN];
351
352     snprintf(ds_type, sizeof(ds_type), "%s:rate",
353              DS_TYPE_TO_STRING(ds->ds[index].type));
354     riemann_event_string_attribute_add(event, "ds_type", ds_type);
355   } else {
356     riemann_event_string_attribute_add(event, "ds_type",
357                                        DS_TYPE_TO_STRING(ds->ds[index].type));
358   }
359
360   {
361     char ds_index[DATA_MAX_NAME_LEN];
362
363     snprintf(ds_index, sizeof(ds_index), "%" PRIsz, index);
364     riemann_event_string_attribute_add(event, "ds_index", ds_index);
365   }
366
367   for (i = 0; i < riemann_attrs_num; i += 2)
368     riemann_event_string_attribute_add(event, riemann_attrs[i],
369                                        riemann_attrs[i + 1]);
370
371   for (i = 0; i < riemann_tags_num; i++)
372     riemann_event_tag_add(event, riemann_tags[i]);
373
374   if (ds->ds[index].type == DS_TYPE_GAUGE) {
375     riemann_event_set(event, RIEMANN_EVENT_FIELD_METRIC_D,
376                       (double)vl->values[index].gauge,
377                       RIEMANN_EVENT_FIELD_NONE);
378   } else if (rates != NULL) {
379     riemann_event_set(event, RIEMANN_EVENT_FIELD_METRIC_D, (double)rates[index],
380                       RIEMANN_EVENT_FIELD_NONE);
381   } else {
382     int64_t metric;
383
384     if (ds->ds[index].type == DS_TYPE_DERIVE)
385       metric = (int64_t)vl->values[index].derive;
386     else if (ds->ds[index].type == DS_TYPE_ABSOLUTE)
387       metric = (int64_t)vl->values[index].absolute;
388     else
389       metric = (int64_t)vl->values[index].counter;
390
391     riemann_event_set(event, RIEMANN_EVENT_FIELD_METRIC_S64, (int64_t)metric,
392                       RIEMANN_EVENT_FIELD_NONE);
393   }
394
395   if (vl->meta) {
396     char **toc;
397     int n = meta_data_toc(vl->meta, &toc);
398
399     for (int i = 0; i < n; i++) {
400       char *key = toc[i];
401       char *value;
402
403       if (0 == meta_data_as_string(vl->meta, key, &value)) {
404         riemann_event_string_attribute_add(event, key, value);
405         free(value);
406       }
407     }
408
409     free(toc);
410   }
411
412   DEBUG("write_riemann plugin: Successfully created message for metric: "
413         "host = \"%s\", service = \"%s\"",
414         event->host, event->service);
415   return event;
416 } /* }}} riemann_event_t *wrr_value_to_event */
417
418 static riemann_message_t *
419 wrr_value_list_to_message(struct riemann_host const *host, /* {{{ */
420                           data_set_t const *ds, value_list_t const *vl,
421                           int *statuses) {
422   riemann_message_t *msg;
423   size_t i;
424   gauge_t *rates = NULL;
425
426   /* Initialize the Msg structure. */
427   msg = riemann_message_new();
428   if (msg == NULL) {
429     ERROR("write_riemann plugin: riemann_message_new failed.");
430     return NULL;
431   }
432
433   if (host->store_rates) {
434     rates = uc_get_rate(ds, vl);
435     if (rates == NULL) {
436       ERROR("write_riemann plugin: uc_get_rate failed.");
437       riemann_message_free(msg);
438       return NULL;
439     }
440   }
441
442   for (i = 0; i < vl->values_len; i++) {
443     riemann_event_t *event;
444
445     event = wrr_value_to_event(host, ds, vl, (int)i, rates, statuses[i]);
446     if (event == NULL) {
447       riemann_message_free(msg);
448       sfree(rates);
449       return NULL;
450     }
451     riemann_message_append_events(msg, event, NULL);
452   }
453
454   sfree(rates);
455   return msg;
456 } /* }}} riemann_message_t *wrr_value_list_to_message */
457
458 /*
459  * Always call while holding host->lock !
460  */
461 static int wrr_batch_flush_nolock(cdtime_t timeout, struct riemann_host *host) {
462   cdtime_t now;
463   int status = 0;
464
465   now = cdtime();
466   if (timeout > 0) {
467     if ((host->batch_init + timeout) > now) {
468       return status;
469     }
470   }
471   wrr_send_nolock(host, host->batch_msg);
472   riemann_message_free(host->batch_msg);
473
474   host->batch_init = now;
475   host->batch_msg = NULL;
476   return status;
477 }
478
479 static int wrr_batch_flush(cdtime_t timeout,
480                            const char *identifier __attribute__((unused)),
481                            user_data_t *user_data) {
482   struct riemann_host *host;
483   int status;
484
485   if (user_data == NULL)
486     return -EINVAL;
487
488   host = user_data->data;
489   pthread_mutex_lock(&host->lock);
490   status = wrr_batch_flush_nolock(timeout, host);
491   if (status != 0)
492     c_complain(
493         LOG_ERR, &host->init_complaint,
494         "write_riemann plugin: riemann_client_send failed with status %i",
495         status);
496   else
497     c_release(LOG_DEBUG, &host->init_complaint,
498               "write_riemann plugin: batch sent.");
499
500   pthread_mutex_unlock(&host->lock);
501   return status;
502 }
503
504 static int wrr_batch_add_value_list(struct riemann_host *host, /* {{{ */
505                                     data_set_t const *ds,
506                                     value_list_t const *vl, int *statuses) {
507   riemann_message_t *msg;
508   size_t len;
509   int ret;
510   cdtime_t timeout;
511
512   msg = wrr_value_list_to_message(host, ds, vl, statuses);
513   if (msg == NULL)
514     return -1;
515
516   pthread_mutex_lock(&host->lock);
517
518   if (host->batch_msg == NULL) {
519     host->batch_msg = msg;
520   } else {
521     int status;
522
523     status = riemann_message_append_events_n(host->batch_msg, msg->n_events,
524                                              msg->events);
525     msg->n_events = 0;
526     msg->events = NULL;
527
528     riemann_message_free(msg);
529
530     if (status != 0) {
531       pthread_mutex_unlock(&host->lock);
532       ERROR("write_riemann plugin: out of memory");
533       return -1;
534     }
535   }
536
537   len = riemann_message_get_packed_size(host->batch_msg);
538   ret = 0;
539   if ((host->batch_max < 0) || (((size_t)host->batch_max) <= len)) {
540     ret = wrr_batch_flush_nolock(0, host);
541   } else {
542     if (host->batch_timeout > 0) {
543       timeout = TIME_T_TO_CDTIME_T((time_t)host->batch_timeout);
544       ret = wrr_batch_flush_nolock(timeout, host);
545     }
546   }
547
548   pthread_mutex_unlock(&host->lock);
549   return ret;
550 } /* }}} riemann_message_t *wrr_batch_add_value_list */
551
552 static int wrr_notification(const notification_t *n, user_data_t *ud) /* {{{ */
553 {
554   int status;
555   struct riemann_host *host = ud->data;
556   riemann_message_t *msg;
557
558   if (!host->notifications)
559     return 0;
560
561   /*
562    * Never batch for notifications, send them ASAP
563    */
564   msg = wrr_notification_to_message(n);
565   if (msg == NULL)
566     return -1;
567
568   status = wrr_send(host, msg);
569   if (status != 0)
570     c_complain(
571         LOG_ERR, &host->init_complaint,
572         "write_riemann plugin: riemann_client_send failed with status %i",
573         status);
574   else
575     c_release(LOG_DEBUG, &host->init_complaint,
576               "write_riemann plugin: riemann_client_send succeeded");
577
578   riemann_message_free(msg);
579   return status;
580 } /* }}} int wrr_notification */
581
582 static int wrr_write(const data_set_t *ds, /* {{{ */
583                      const value_list_t *vl, user_data_t *ud) {
584   int status = 0;
585   int statuses[vl->values_len];
586   struct riemann_host *host = ud->data;
587   riemann_message_t *msg;
588
589   if (host->check_thresholds) {
590     status = write_riemann_threshold_check(ds, vl, statuses);
591     if (status != 0)
592       return status;
593   } else {
594     memset(statuses, 0, sizeof(statuses));
595   }
596
597   if (host->client_type != RIEMANN_CLIENT_UDP && host->batch_mode) {
598     wrr_batch_add_value_list(host, ds, vl, statuses);
599   } else {
600     msg = wrr_value_list_to_message(host, ds, vl, statuses);
601     if (msg == NULL)
602       return -1;
603
604     status = wrr_send(host, msg);
605
606     riemann_message_free(msg);
607   }
608   return status;
609 } /* }}} int wrr_write */
610
611 static void wrr_free(void *p) /* {{{ */
612 {
613   struct riemann_host *host = p;
614
615   if (host == NULL)
616     return;
617
618   pthread_mutex_lock(&host->lock);
619
620   host->reference_count--;
621   if (host->reference_count > 0) {
622     pthread_mutex_unlock(&host->lock);
623     return;
624   }
625
626   wrr_disconnect(host);
627
628   pthread_mutex_lock(&host->lock);
629   pthread_mutex_destroy(&host->lock);
630   sfree(host);
631 } /* }}} void wrr_free */
632
633 static int wrr_config_node(oconfig_item_t *ci) /* {{{ */
634 {
635   struct riemann_host *host = NULL;
636   int status = 0;
637   int i;
638   oconfig_item_t *child;
639   char callback_name[DATA_MAX_NAME_LEN];
640
641   if ((host = calloc(1, sizeof(*host))) == NULL) {
642     ERROR("write_riemann plugin: calloc failed.");
643     return ENOMEM;
644   }
645   pthread_mutex_init(&host->lock, NULL);
646   C_COMPLAIN_INIT(&host->init_complaint);
647   host->reference_count = 1;
648   host->node = NULL;
649   host->port = 0;
650   host->notifications = true;
651   host->check_thresholds = false;
652   host->store_rates = true;
653   host->always_append_ds = false;
654   host->batch_mode = true;
655   host->batch_max = RIEMANN_BATCH_MAX; /* typical MSS */
656   host->batch_init = cdtime();
657   host->batch_timeout = 0;
658   host->ttl_factor = RIEMANN_TTL_FACTOR;
659   host->client = NULL;
660   host->client_type = RIEMANN_CLIENT_TCP;
661   host->timeout.tv_sec = 0;
662   host->timeout.tv_usec = 0;
663
664   status = cf_util_get_string(ci, &host->name);
665   if (status != 0) {
666     WARNING("write_riemann plugin: Required host name is missing.");
667     wrr_free(host);
668     return -1;
669   }
670
671   for (i = 0; i < ci->children_num; i++) {
672     /*
673      * The code here could be simplified but makes room
674      * for easy adding of new options later on.
675      */
676     child = &ci->children[i];
677     status = 0;
678
679     if (strcasecmp("Host", child->key) == 0) {
680       status = cf_util_get_string(child, &host->node);
681       if (status != 0)
682         break;
683     } else if (strcasecmp("Notifications", child->key) == 0) {
684       status = cf_util_get_boolean(child, &host->notifications);
685       if (status != 0)
686         break;
687     } else if (strcasecmp("EventServicePrefix", child->key) == 0) {
688       status = cf_util_get_string(child, &host->event_service_prefix);
689       if (status != 0)
690         break;
691     } else if (strcasecmp("CheckThresholds", child->key) == 0) {
692       status = cf_util_get_boolean(child, &host->check_thresholds);
693       if (status != 0)
694         break;
695     } else if (strcasecmp("Batch", child->key) == 0) {
696       status = cf_util_get_boolean(child, &host->batch_mode);
697       if (status != 0)
698         break;
699     } else if (strcasecmp("BatchMaxSize", child->key) == 0) {
700       status = cf_util_get_int(child, &host->batch_max);
701       if (status != 0)
702         break;
703     } else if (strcasecmp("BatchFlushTimeout", child->key) == 0) {
704       status = cf_util_get_int(child, &host->batch_timeout);
705       if (status != 0)
706         break;
707     } else if (strcasecmp("Timeout", child->key) == 0) {
708 #if RCC_VERSION_NUMBER >= 0x010800
709       status = cf_util_get_int(child, (int *)&host->timeout.tv_sec);
710       if (status != 0)
711         break;
712 #else
713       WARNING("write_riemann plugin: The Timeout option is not supported. "
714               "Please upgrade the Riemann client to at least 1.8.0.");
715 #endif
716     } else if (strcasecmp("Port", child->key) == 0) {
717       host->port = cf_util_get_port_number(child);
718       if (host->port == -1) {
719         break;
720       }
721     } else if (strcasecmp("Protocol", child->key) == 0) {
722       char tmp[16];
723       status = cf_util_get_string_buffer(child, tmp, sizeof(tmp));
724       if (status != 0)
725         break;
726
727       if (strcasecmp("UDP", tmp) == 0)
728         host->client_type = RIEMANN_CLIENT_UDP;
729       else if (strcasecmp("TCP", tmp) == 0)
730         host->client_type = RIEMANN_CLIENT_TCP;
731       else if (strcasecmp("TLS", tmp) == 0)
732         host->client_type = RIEMANN_CLIENT_TLS;
733       else
734         WARNING("write_riemann plugin: The value "
735                 "\"%s\" is not valid for the "
736                 "\"Protocol\" option. Use "
737                 "either \"UDP\", \"TCP\" or \"TLS\".",
738                 tmp);
739     } else if (strcasecmp("TLSCAFile", child->key) == 0) {
740       status = cf_util_get_string(child, &host->tls_ca_file);
741       if (status != 0)
742         break;
743     } else if (strcasecmp("TLSCertFile", child->key) == 0) {
744       status = cf_util_get_string(child, &host->tls_cert_file);
745       if (status != 0)
746         break;
747     } else if (strcasecmp("TLSKeyFile", child->key) == 0) {
748       status = cf_util_get_string(child, &host->tls_key_file);
749       if (status != 0)
750         break;
751     } else if (strcasecmp("StoreRates", child->key) == 0) {
752       status = cf_util_get_boolean(child, &host->store_rates);
753       if (status != 0)
754         break;
755     } else if (strcasecmp("AlwaysAppendDS", child->key) == 0) {
756       status = cf_util_get_boolean(child, &host->always_append_ds);
757       if (status != 0)
758         break;
759     } else if (strcasecmp("TTLFactor", child->key) == 0) {
760       double tmp = NAN;
761       status = cf_util_get_double(child, &tmp);
762       if (status != 0)
763         break;
764       if (tmp >= 2.0) {
765         host->ttl_factor = tmp;
766       } else if (tmp >= 1.0) {
767         NOTICE("write_riemann plugin: The configured "
768                "TTLFactor is very small "
769                "(%.1f). A value of 2.0 or "
770                "greater is recommended.",
771                tmp);
772         host->ttl_factor = tmp;
773       } else if (tmp > 0.0) {
774         WARNING("write_riemann plugin: The configured "
775                 "TTLFactor is too small to be "
776                 "useful (%.1f). I'll use it "
777                 "since the user knows best, "
778                 "but under protest.",
779                 tmp);
780         host->ttl_factor = tmp;
781       } else { /* zero, negative and NAN */
782         ERROR("write_riemann plugin: The configured "
783               "TTLFactor is invalid (%.1f).",
784               tmp);
785       }
786     } else {
787       WARNING("write_riemann plugin: ignoring unknown config "
788               "option: \"%s\"",
789               child->key);
790     }
791   }
792   if (status != 0) {
793     wrr_free(host);
794     return status;
795   }
796
797   snprintf(callback_name, sizeof(callback_name), "write_riemann/%s",
798            host->name);
799
800   user_data_t ud = {.data = host, .free_func = wrr_free};
801
802   pthread_mutex_lock(&host->lock);
803
804   status = plugin_register_write(callback_name, wrr_write, &ud);
805
806   if (host->client_type != RIEMANN_CLIENT_UDP && host->batch_mode) {
807     ud.free_func = NULL;
808     plugin_register_flush(callback_name, wrr_batch_flush, &ud);
809   }
810   if (status != 0)
811     WARNING("write_riemann plugin: plugin_register_write (\"%s\") "
812             "failed with status %i.",
813             callback_name, status);
814   else /* success */
815     host->reference_count++;
816
817   status = plugin_register_notification(callback_name, wrr_notification, &ud);
818   if (status != 0)
819     WARNING("write_riemann plugin: plugin_register_notification (\"%s\") "
820             "failed with status %i.",
821             callback_name, status);
822   else /* success */
823     host->reference_count++;
824
825   if (host->reference_count <= 1) {
826     /* Both callbacks failed => free memory.
827      * We need to unlock here, because riemann_free() will lock.
828      * This is not a race condition, because we're the only one
829      * holding a reference. */
830     pthread_mutex_unlock(&host->lock);
831     wrr_free(host);
832     return -1;
833   }
834
835   host->reference_count--;
836   pthread_mutex_unlock(&host->lock);
837
838   return status;
839 } /* }}} int wrr_config_node */
840
841 static int wrr_config(oconfig_item_t *ci) /* {{{ */
842 {
843   int i;
844   oconfig_item_t *child;
845   int status;
846
847   for (i = 0; i < ci->children_num; i++) {
848     child = &ci->children[i];
849
850     if (strcasecmp("Node", child->key) == 0) {
851       wrr_config_node(child);
852     } else if (strcasecmp(child->key, "attribute") == 0) {
853       char *key = NULL;
854       char *val = NULL;
855
856       if (child->values_num != 2) {
857         WARNING("riemann attributes need both a key and a value.");
858         return -1;
859       }
860       if (child->values[0].type != OCONFIG_TYPE_STRING ||
861           child->values[1].type != OCONFIG_TYPE_STRING) {
862         WARNING("riemann attribute needs string arguments.");
863         return -1;
864       }
865       if ((key = strdup(child->values[0].value.string)) == NULL) {
866         WARNING("cannot allocate memory for attribute key.");
867         return -1;
868       }
869       if ((val = strdup(child->values[1].value.string)) == NULL) {
870         WARNING("cannot allocate memory for attribute value.");
871         sfree(key);
872         return -1;
873       }
874       strarray_add(&riemann_attrs, &riemann_attrs_num, key);
875       strarray_add(&riemann_attrs, &riemann_attrs_num, val);
876       DEBUG("write_riemann: got attr: %s => %s", key, val);
877       sfree(key);
878       sfree(val);
879     } else if (strcasecmp(child->key, "tag") == 0) {
880       char *tmp = NULL;
881       status = cf_util_get_string(child, &tmp);
882       if (status != 0)
883         continue;
884
885       strarray_add(&riemann_tags, &riemann_tags_num, tmp);
886       DEBUG("write_riemann plugin: Got tag: %s", tmp);
887       sfree(tmp);
888     } else {
889       WARNING("write_riemann plugin: Ignoring unknown "
890               "configuration option \"%s\" at top level.",
891               child->key);
892     }
893   }
894   return 0;
895 } /* }}} int wrr_config */
896
897 void module_register(void) {
898   plugin_register_complex_config("write_riemann", wrr_config);
899 }