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
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:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
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.
26 * Pierre-Yves Ritschard <pyr at spootnik.org>
27 * Florian octo Forster <octo at collectd.org>
28 * Gergely Nagy <algernon at madhouse-project.org>
35 #include "utils_cache.h"
36 #include "utils_complain.h"
37 #include "write_riemann_threshold.h"
39 #include <riemann/riemann-client.h>
41 #define RIEMANN_HOST "localhost"
42 #define RIEMANN_PORT 5555
43 #define RIEMANN_TTL_FACTOR 2.0
44 #define RIEMANN_BATCH_MAX 8192
47 c_complain_t init_complaint;
49 char *event_service_prefix;
53 bool check_thresholds;
55 bool always_append_ds;
58 riemann_client_type_t client_type;
59 riemann_client_t *client;
65 riemann_message_t *batch_msg;
69 struct timeval timeout;
72 static char **riemann_tags;
73 static size_t riemann_tags_num;
74 static char **riemann_attrs;
75 static size_t riemann_attrs_num;
77 /* host->lock must be held when calling this function. */
78 static int wrr_connect(struct riemann_host *host) /* {{{ */
86 node = (host->node != NULL) ? host->node : RIEMANN_HOST;
87 port = (host->port) ? host->port : RIEMANN_PORT;
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",
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);
107 c_complain(LOG_ERR, &host->init_complaint,
108 "write_riemann plugin: Unable to connect to Riemann at %s:%d",
115 set_sock_opts(riemann_client_get_fd(host->client));
117 c_release(LOG_INFO, &host->init_complaint,
118 "write_riemann plugin: Successfully connected to %s:%d", node,
122 } /* }}} int wrr_connect */
124 /* host->lock must be held when calling this function. */
125 static int wrr_disconnect(struct riemann_host *host) /* {{{ */
130 riemann_client_free(host->client);
134 } /* }}} int wrr_disconnect */
137 * Function to send messages to riemann.
139 * Acquires the host lock, disconnects on errors.
141 static int wrr_send_nolock(struct riemann_host *host,
142 riemann_message_t *msg) /* {{{ */
146 status = wrr_connect(host);
151 status = riemann_client_send_message(host->client, msg);
153 wrr_disconnect(host);
158 * For TCP we need to receive message acknowledgemenent.
160 if (host->client_type != RIEMANN_CLIENT_UDP) {
161 riemann_message_t *response;
163 response = riemann_client_recv_message(host->client);
165 if (response == NULL) {
166 wrr_disconnect(host);
169 riemann_message_free(response);
173 } /* }}} int wrr_send */
175 static int wrr_send(struct riemann_host *host, riemann_message_t *msg) {
178 pthread_mutex_lock(&host->lock);
179 status = wrr_send_nolock(host, msg);
180 pthread_mutex_unlock(&host->lock);
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;
190 switch (n->severity) {
195 severity = "warning";
198 severity = "critical";
201 severity = "unknown";
204 format_name(service_buffer, sizeof(service_buffer),
205 /* host = */ "", n->plugin, n->plugin_instance, n->type,
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);
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));
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",
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",
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]);
238 for (size_t i = 0; i < riemann_tags_num; i++)
239 riemann_event_tag_add(event, riemann_tags[i]);
241 if (n->message[0] != 0)
242 riemann_event_string_attribute_add(event, "description", n->message);
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);
254 if (meta->type == NM_TYPE_STRING) {
255 riemann_event_string_attribute_add(event, meta->name,
256 meta->nm_value.nm_string);
261 msg = riemann_message_create_with_events(event, NULL);
263 ERROR("write_riemann plugin: riemann_message_create_with_events() failed.");
264 riemann_event_free(event);
268 DEBUG("write_riemann plugin: Successfully created message for notification: "
269 "host = \"%s\", service = \"%s\", state = \"%s\"",
270 event->host, event->service, event->state);
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];
283 event = riemann_event_new();
285 ERROR("write_riemann plugin: riemann_event_new() failed.");
289 format_name(name_buffer, sizeof(name_buffer),
290 /* host = */ "", vl->plugin, vl->plugin_instance, vl->type,
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],
297 snprintf(service_buffer, sizeof(service_buffer), "%s%s/%s",
298 host->event_service_prefix, &name_buffer[1], ds->ds[index].name);
300 if (host->event_service_prefix == NULL)
301 sstrncpy(service_buffer, &name_buffer[1], sizeof(service_buffer));
303 snprintf(service_buffer, sizeof(service_buffer), "%s%s",
304 host->event_service_prefix, &name_buffer[1]);
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);
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));
320 if (host->check_thresholds) {
321 const char *state = NULL;
338 riemann_event_set(event, RIEMANN_EVENT_FIELD_STATE, state,
339 RIEMANN_EVENT_FIELD_NONE);
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",
349 if ((ds->ds[index].type != DS_TYPE_GAUGE) && (rates != NULL)) {
350 char ds_type[DATA_MAX_NAME_LEN];
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);
356 riemann_event_string_attribute_add(event, "ds_type",
357 DS_TYPE_TO_STRING(ds->ds[index].type));
361 char ds_index[DATA_MAX_NAME_LEN];
363 snprintf(ds_index, sizeof(ds_index), "%" PRIsz, index);
364 riemann_event_string_attribute_add(event, "ds_index", ds_index);
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]);
371 for (i = 0; i < riemann_tags_num; i++)
372 riemann_event_tag_add(event, riemann_tags[i]);
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);
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;
389 metric = (int64_t)vl->values[index].counter;
391 riemann_event_set(event, RIEMANN_EVENT_FIELD_METRIC_S64, (int64_t)metric,
392 RIEMANN_EVENT_FIELD_NONE);
395 DEBUG("write_riemann plugin: Successfully created message for metric: "
396 "host = \"%s\", service = \"%s\"",
397 event->host, event->service);
399 } /* }}} riemann_event_t *wrr_value_to_event */
401 static riemann_message_t *
402 wrr_value_list_to_message(struct riemann_host const *host, /* {{{ */
403 data_set_t const *ds, value_list_t const *vl,
405 riemann_message_t *msg;
407 gauge_t *rates = NULL;
409 /* Initialize the Msg structure. */
410 msg = riemann_message_new();
412 ERROR("write_riemann plugin: riemann_message_new failed.");
416 if (host->store_rates) {
417 rates = uc_get_rate(ds, vl);
419 ERROR("write_riemann plugin: uc_get_rate failed.");
420 riemann_message_free(msg);
425 for (i = 0; i < vl->values_len; i++) {
426 riemann_event_t *event;
428 event = wrr_value_to_event(host, ds, vl, (int)i, rates, statuses[i]);
430 riemann_message_free(msg);
434 riemann_message_append_events(msg, event, NULL);
439 } /* }}} riemann_message_t *wrr_value_list_to_message */
442 * Always call while holding host->lock !
444 static int wrr_batch_flush_nolock(cdtime_t timeout, struct riemann_host *host) {
450 if ((host->batch_init + timeout) > now) {
454 wrr_send_nolock(host, host->batch_msg);
455 riemann_message_free(host->batch_msg);
457 host->batch_init = now;
458 host->batch_msg = NULL;
462 static int wrr_batch_flush(cdtime_t timeout,
463 const char *identifier __attribute__((unused)),
464 user_data_t *user_data) {
465 struct riemann_host *host;
468 if (user_data == NULL)
471 host = user_data->data;
472 pthread_mutex_lock(&host->lock);
473 status = wrr_batch_flush_nolock(timeout, host);
476 LOG_ERR, &host->init_complaint,
477 "write_riemann plugin: riemann_client_send failed with status %i",
480 c_release(LOG_DEBUG, &host->init_complaint,
481 "write_riemann plugin: batch sent.");
483 pthread_mutex_unlock(&host->lock);
487 static int wrr_batch_add_value_list(struct riemann_host *host, /* {{{ */
488 data_set_t const *ds,
489 value_list_t const *vl, int *statuses) {
490 riemann_message_t *msg;
495 msg = wrr_value_list_to_message(host, ds, vl, statuses);
499 pthread_mutex_lock(&host->lock);
501 if (host->batch_msg == NULL) {
502 host->batch_msg = msg;
506 status = riemann_message_append_events_n(host->batch_msg, msg->n_events,
511 riemann_message_free(msg);
514 pthread_mutex_unlock(&host->lock);
515 ERROR("write_riemann plugin: out of memory");
520 len = riemann_message_get_packed_size(host->batch_msg);
522 if ((host->batch_max < 0) || (((size_t)host->batch_max) <= len)) {
523 ret = wrr_batch_flush_nolock(0, host);
525 if (host->batch_timeout > 0) {
526 timeout = TIME_T_TO_CDTIME_T((time_t)host->batch_timeout);
527 ret = wrr_batch_flush_nolock(timeout, host);
531 pthread_mutex_unlock(&host->lock);
533 } /* }}} riemann_message_t *wrr_batch_add_value_list */
535 static int wrr_notification(const notification_t *n, user_data_t *ud) /* {{{ */
538 struct riemann_host *host = ud->data;
539 riemann_message_t *msg;
541 if (!host->notifications)
545 * Never batch for notifications, send them ASAP
547 msg = wrr_notification_to_message(n);
551 status = wrr_send(host, msg);
554 LOG_ERR, &host->init_complaint,
555 "write_riemann plugin: riemann_client_send failed with status %i",
558 c_release(LOG_DEBUG, &host->init_complaint,
559 "write_riemann plugin: riemann_client_send succeeded");
561 riemann_message_free(msg);
563 } /* }}} int wrr_notification */
565 static int wrr_write(const data_set_t *ds, /* {{{ */
566 const value_list_t *vl, user_data_t *ud) {
568 int statuses[vl->values_len];
569 struct riemann_host *host = ud->data;
570 riemann_message_t *msg;
572 if (host->check_thresholds) {
573 status = write_riemann_threshold_check(ds, vl, statuses);
577 memset(statuses, 0, sizeof(statuses));
580 if (host->client_type != RIEMANN_CLIENT_UDP && host->batch_mode) {
581 wrr_batch_add_value_list(host, ds, vl, statuses);
583 msg = wrr_value_list_to_message(host, ds, vl, statuses);
587 status = wrr_send(host, msg);
589 riemann_message_free(msg);
592 } /* }}} int wrr_write */
594 static void wrr_free(void *p) /* {{{ */
596 struct riemann_host *host = p;
601 pthread_mutex_lock(&host->lock);
603 host->reference_count--;
604 if (host->reference_count > 0) {
605 pthread_mutex_unlock(&host->lock);
609 wrr_disconnect(host);
611 pthread_mutex_lock(&host->lock);
612 pthread_mutex_destroy(&host->lock);
614 } /* }}} void wrr_free */
616 static int wrr_config_node(oconfig_item_t *ci) /* {{{ */
618 struct riemann_host *host = NULL;
621 oconfig_item_t *child;
622 char callback_name[DATA_MAX_NAME_LEN];
624 if ((host = calloc(1, sizeof(*host))) == NULL) {
625 ERROR("write_riemann plugin: calloc failed.");
628 pthread_mutex_init(&host->lock, NULL);
629 C_COMPLAIN_INIT(&host->init_complaint);
630 host->reference_count = 1;
633 host->notifications = true;
634 host->check_thresholds = false;
635 host->store_rates = true;
636 host->always_append_ds = false;
637 host->batch_mode = true;
638 host->batch_max = RIEMANN_BATCH_MAX; /* typical MSS */
639 host->batch_init = cdtime();
640 host->batch_timeout = 0;
641 host->ttl_factor = RIEMANN_TTL_FACTOR;
643 host->client_type = RIEMANN_CLIENT_TCP;
644 host->timeout.tv_sec = 0;
645 host->timeout.tv_usec = 0;
647 status = cf_util_get_string(ci, &host->name);
649 WARNING("write_riemann plugin: Required host name is missing.");
654 for (i = 0; i < ci->children_num; i++) {
656 * The code here could be simplified but makes room
657 * for easy adding of new options later on.
659 child = &ci->children[i];
662 if (strcasecmp("Host", child->key) == 0) {
663 status = cf_util_get_string(child, &host->node);
666 } else if (strcasecmp("Notifications", child->key) == 0) {
667 status = cf_util_get_boolean(child, &host->notifications);
670 } else if (strcasecmp("EventServicePrefix", child->key) == 0) {
671 status = cf_util_get_string(child, &host->event_service_prefix);
674 } else if (strcasecmp("CheckThresholds", child->key) == 0) {
675 status = cf_util_get_boolean(child, &host->check_thresholds);
678 } else if (strcasecmp("Batch", child->key) == 0) {
679 status = cf_util_get_boolean(child, &host->batch_mode);
682 } else if (strcasecmp("BatchMaxSize", child->key) == 0) {
683 status = cf_util_get_int(child, &host->batch_max);
686 } else if (strcasecmp("BatchFlushTimeout", child->key) == 0) {
687 status = cf_util_get_int(child, &host->batch_timeout);
690 } else if (strcasecmp("Timeout", child->key) == 0) {
691 #if RCC_VERSION_NUMBER >= 0x010800
692 status = cf_util_get_int(child, (int *)&host->timeout.tv_sec);
696 WARNING("write_riemann plugin: The Timeout option is not supported. "
697 "Please upgrade the Riemann client to at least 1.8.0.");
699 } else if (strcasecmp("Port", child->key) == 0) {
700 host->port = cf_util_get_port_number(child);
701 if (host->port == -1) {
704 } else if (strcasecmp("Protocol", child->key) == 0) {
706 status = cf_util_get_string_buffer(child, tmp, sizeof(tmp));
710 if (strcasecmp("UDP", tmp) == 0)
711 host->client_type = RIEMANN_CLIENT_UDP;
712 else if (strcasecmp("TCP", tmp) == 0)
713 host->client_type = RIEMANN_CLIENT_TCP;
714 else if (strcasecmp("TLS", tmp) == 0)
715 host->client_type = RIEMANN_CLIENT_TLS;
717 WARNING("write_riemann plugin: The value "
718 "\"%s\" is not valid for the "
719 "\"Protocol\" option. Use "
720 "either \"UDP\", \"TCP\" or \"TLS\".",
722 } else if (strcasecmp("TLSCAFile", child->key) == 0) {
723 status = cf_util_get_string(child, &host->tls_ca_file);
726 } else if (strcasecmp("TLSCertFile", child->key) == 0) {
727 status = cf_util_get_string(child, &host->tls_cert_file);
730 } else if (strcasecmp("TLSKeyFile", child->key) == 0) {
731 status = cf_util_get_string(child, &host->tls_key_file);
734 } else if (strcasecmp("StoreRates", child->key) == 0) {
735 status = cf_util_get_boolean(child, &host->store_rates);
738 } else if (strcasecmp("AlwaysAppendDS", child->key) == 0) {
739 status = cf_util_get_boolean(child, &host->always_append_ds);
742 } else if (strcasecmp("TTLFactor", child->key) == 0) {
744 status = cf_util_get_double(child, &tmp);
748 host->ttl_factor = tmp;
749 } else if (tmp >= 1.0) {
750 NOTICE("write_riemann plugin: The configured "
751 "TTLFactor is very small "
752 "(%.1f). A value of 2.0 or "
753 "greater is recommended.",
755 host->ttl_factor = tmp;
756 } else if (tmp > 0.0) {
757 WARNING("write_riemann plugin: The configured "
758 "TTLFactor is too small to be "
759 "useful (%.1f). I'll use it "
760 "since the user knows best, "
761 "but under protest.",
763 host->ttl_factor = tmp;
764 } else { /* zero, negative and NAN */
765 ERROR("write_riemann plugin: The configured "
766 "TTLFactor is invalid (%.1f).",
770 WARNING("write_riemann plugin: ignoring unknown config "
780 snprintf(callback_name, sizeof(callback_name), "write_riemann/%s",
783 user_data_t ud = {.data = host, .free_func = wrr_free};
785 pthread_mutex_lock(&host->lock);
787 status = plugin_register_write(callback_name, wrr_write, &ud);
789 if (host->client_type != RIEMANN_CLIENT_UDP && host->batch_mode) {
791 plugin_register_flush(callback_name, wrr_batch_flush, &ud);
794 WARNING("write_riemann plugin: plugin_register_write (\"%s\") "
795 "failed with status %i.",
796 callback_name, status);
798 host->reference_count++;
800 status = plugin_register_notification(callback_name, wrr_notification, &ud);
802 WARNING("write_riemann plugin: plugin_register_notification (\"%s\") "
803 "failed with status %i.",
804 callback_name, status);
806 host->reference_count++;
808 if (host->reference_count <= 1) {
809 /* Both callbacks failed => free memory.
810 * We need to unlock here, because riemann_free() will lock.
811 * This is not a race condition, because we're the only one
812 * holding a reference. */
813 pthread_mutex_unlock(&host->lock);
818 host->reference_count--;
819 pthread_mutex_unlock(&host->lock);
822 } /* }}} int wrr_config_node */
824 static int wrr_config(oconfig_item_t *ci) /* {{{ */
827 oconfig_item_t *child;
830 for (i = 0; i < ci->children_num; i++) {
831 child = &ci->children[i];
833 if (strcasecmp("Node", child->key) == 0) {
834 wrr_config_node(child);
835 } else if (strcasecmp(child->key, "attribute") == 0) {
839 if (child->values_num != 2) {
840 WARNING("riemann attributes need both a key and a value.");
843 if (child->values[0].type != OCONFIG_TYPE_STRING ||
844 child->values[1].type != OCONFIG_TYPE_STRING) {
845 WARNING("riemann attribute needs string arguments.");
848 if ((key = strdup(child->values[0].value.string)) == NULL) {
849 WARNING("cannot allocate memory for attribute key.");
852 if ((val = strdup(child->values[1].value.string)) == NULL) {
853 WARNING("cannot allocate memory for attribute value.");
857 strarray_add(&riemann_attrs, &riemann_attrs_num, key);
858 strarray_add(&riemann_attrs, &riemann_attrs_num, val);
859 DEBUG("write_riemann: got attr: %s => %s", key, val);
862 } else if (strcasecmp(child->key, "tag") == 0) {
864 status = cf_util_get_string(child, &tmp);
868 strarray_add(&riemann_tags, &riemann_tags_num, tmp);
869 DEBUG("write_riemann plugin: Got tag: %s", tmp);
872 WARNING("write_riemann plugin: Ignoring unknown "
873 "configuration option \"%s\" at top level.",
878 } /* }}} int wrr_config */
880 void module_register(void) {
881 plugin_register_complex_config("write_riemann", wrr_config);