2 * collectd - src/write_sensu.c
3 * Copyright (C) 2015 Fabrice A. Marie
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
24 * Fabrice A. Marie <fabrice at kibinlabs.com>
30 #include "configfile.h"
31 #include "utils_cache.h"
32 #include <arpa/inet.h>
42 * Uses asprintf() portable implementation from
43 * https://github.com/littlstar/asprintf.c/blob/master/
44 * copyright (c) 2014 joseph werle <joseph.werle@gmail.com> under MIT license.
49 int vasprintf(char **str, const char *fmt, va_list args) {
54 // apply variadic arguments to
55 // sprintf with format to get size
56 size = vsnprintf(NULL, size, fmt, tmpa);
59 // return -1 to be compliant if
60 // size is less than 0
61 if (size < 0) { return -1; }
62 // alloc with size plus 1 for `\0'
63 *str = (char *) malloc(size + 1);
64 // return -1 to be compliant
65 // if pointer is `NULL'
66 if (NULL == *str) { return -1; }
67 // format string with original
68 // variadic arguments and set new size
69 size = vsprintf(*str, fmt, args);
73 int asprintf(char **str, const char *fmt, ...) {
76 // init variadic argumens
78 // format and get size
79 size = vasprintf(str, fmt, args);
87 #define SENSU_HOST "localhost"
88 #define SENSU_PORT "3030"
97 char *event_service_prefix;
98 struct str_list metric_handlers;
99 struct str_list notification_handlers;
102 pthread_mutex_t lock;
106 _Bool always_append_ds;
111 struct addrinfo *res;
115 static char *sensu_tags = NULL;
116 static char **sensu_attrs = NULL;
117 static size_t sensu_attrs_num;
119 static int add_str_to_list(struct str_list *strs,
120 const char *str_to_add) /* {{{ */
122 char **old_strs_ptr = strs->strs;
123 char *newstr = strdup(str_to_add);
124 if (newstr == NULL) {
125 ERROR("write_sensu plugin: Unable to alloc memory");
128 strs->strs = realloc(strs->strs, sizeof(char *) *(strs->nb_strs + 1));
129 if (strs->strs == NULL) {
130 strs->strs = old_strs_ptr;
132 ERROR("write_sensu plugin: Unable to alloc memory");
135 strs->strs[strs->nb_strs] = newstr;
139 /* }}} int add_str_to_list */
141 static void free_str_list(struct str_list *strs) /* {{{ */
144 for (i=0; i<strs->nb_strs; i++)
148 /* }}} void free_str_list */
150 static int sensu_connect(struct sensu_host *host) /* {{{ */
153 struct addrinfo *ai, hints;
157 // Resolve the target if we haven't done already
158 if (!(host->flags & F_READY)) {
159 memset(&hints, 0, sizeof(hints));
160 memset(&service, 0, sizeof(service));
162 hints.ai_family = AF_INET;
163 hints.ai_socktype = SOCK_STREAM;
165 hints.ai_flags |= AI_ADDRCONFIG;
168 node = (host->node != NULL) ? host->node : SENSU_HOST;
169 service = (host->service != NULL) ? host->service : SENSU_PORT;
171 if ((e = getaddrinfo(node, service, &hints, &(host->res))) != 0) {
172 ERROR("write_sensu plugin: Unable to resolve host \"%s\": %s",
173 node, gai_strerror(e));
176 DEBUG("write_sensu plugin: successfully resolved host/port: %s/%s",
178 host->flags |= F_READY;
181 struct linger so_linger;
183 for (ai = host->res; ai != NULL; ai = ai->ai_next) {
185 if ((host->s = socket(ai->ai_family,
187 ai->ai_protocol)) == -1) {
191 // Set very low close() lingering
192 so_linger.l_onoff = 1;
193 so_linger.l_linger = 3;
194 if (setsockopt(host->s, SOL_SOCKET, SO_LINGER, &so_linger, sizeof so_linger) != 0)
195 WARNING("write_sensu plugin: failed to set socket close() lingering");
197 // connect the socket
198 if (connect(host->s, ai->ai_addr, ai->ai_addrlen) != 0) {
203 DEBUG("write_sensu plugin: connected");
208 WARNING("write_sensu plugin: Unable to connect to sensu client");
212 } /* }}} int sensu_connect */
214 static void sensu_close_socket(struct sensu_host *host) /* {{{ */
220 } /* }}} void sensu_close_socket */
222 static char *build_json_str_list(const char *tag, struct str_list const *list) /* {{{ */
228 if (list->nb_strs == 0) {
229 ret_str = malloc(sizeof(char));
230 if (ret_str == NULL) {
231 ERROR("write_sensu plugin: Unable to alloc memory");
237 res = asprintf(&temp_str, "\"%s\": [\"%s\"", tag, list->strs[0]);
239 ERROR("write_sensu plugin: Unable to alloc memory");
242 for (i=1; i<list->nb_strs; i++) {
243 res = asprintf(&ret_str, "%s, \"%s\"", temp_str, list->strs[i]);
246 ERROR("write_sensu plugin: Unable to alloc memory");
251 res = asprintf(&ret_str, "%s]", temp_str);
254 ERROR("write_sensu plugin: Unable to alloc memory");
259 } /* }}} char *build_json_str_list*/
261 int sensu_format_name2(char *ret, int ret_len,
262 const char *hostname,
263 const char *plugin, const char *plugin_instance,
264 const char *type, const char *type_instance,
265 const char *separator)
271 buffer_size = (size_t) ret_len;
273 #define APPEND(str) do { \
274 size_t l = strlen (str); \
275 if (l >= buffer_size) \
277 memcpy (buffer, (str), l); \
278 buffer += l; buffer_size -= l; \
281 assert (plugin != NULL);
282 assert (type != NULL);
287 if ((plugin_instance != NULL) && (plugin_instance[0] != 0))
290 APPEND (plugin_instance);
294 if ((type_instance != NULL) && (type_instance[0] != 0))
297 APPEND (type_instance);
299 assert (buffer_size > 0);
304 } /* int sensu_format_name2 */
306 static void in_place_replace_sensu_name_reserved(char *orig_name) /* {{{ */
309 int len=strlen(orig_name);
310 for (i=0; i<len; i++) {
311 // some plugins like ipmi generate special characters in metric name
312 switch(orig_name[i]) {
313 case '(': orig_name[i] = '_'; break;
314 case ')': orig_name[i] = '_'; break;
315 case ' ': orig_name[i] = '_'; break;
316 case '"': orig_name[i] = '_'; break;
317 case '\'': orig_name[i] = '_'; break;
318 case '+': orig_name[i] = '_'; break;
321 } /* }}} char *replace_sensu_name_reserved */
323 static char *sensu_value_to_json(struct sensu_host const *host, /* {{{ */
324 data_set_t const *ds,
325 value_list_t const *vl, size_t index,
326 gauge_t const *rates,
329 char name_buffer[5 * DATA_MAX_NAME_LEN];
330 char service_buffer[6 * DATA_MAX_NAME_LEN];
336 // First part of the JSON string
337 const char *part1 = "{\"name\": \"collectd\", \"type\": \"metric\"";
339 char *handlers_str = build_json_str_list("handlers", &(host->metric_handlers));
340 if (handlers_str == NULL) {
341 ERROR("write_sensu plugin: Unable to alloc memory");
345 // incorporate the handlers
346 if (strlen(handlers_str) == 0) {
348 ret_str = strdup(part1);
349 if (ret_str == NULL) {
350 ERROR("write_sensu plugin: Unable to alloc memory");
355 res = asprintf(&ret_str, "%s, %s", part1, handlers_str);
358 ERROR("write_sensu plugin: Unable to alloc memory");
363 // incorporate the plugin name information
364 res = asprintf(&temp_str, "%s, \"collectd_plugin\": \"%s\"", ret_str, vl->plugin);
367 ERROR("write_sensu plugin: Unable to alloc memory");
372 // incorporate the plugin type
373 res = asprintf(&temp_str, "%s, \"collectd_plugin_type\": \"%s\"", ret_str, vl->type);
376 ERROR("write_sensu plugin: Unable to alloc memory");
381 // incorporate the plugin instance if any
382 if (vl->plugin_instance[0] != 0) {
383 res = asprintf(&temp_str, "%s, \"collectd_plugin_instance\": \"%s\"", ret_str, vl->plugin_instance);
386 ERROR("write_sensu plugin: Unable to alloc memory");
392 // incorporate the plugin type instance if any
393 if (vl->type_instance[0] != 0) {
394 res = asprintf(&temp_str, "%s, \"collectd_plugin_type_instance\": \"%s\"", ret_str, vl->type_instance);
397 ERROR("write_sensu plugin: Unable to alloc memory");
403 // incorporate the data source type
404 if ((ds->ds[index].type != DS_TYPE_GAUGE) && (rates != NULL)) {
405 char ds_type[DATA_MAX_NAME_LEN];
406 ssnprintf (ds_type, sizeof (ds_type), "%s:rate", DS_TYPE_TO_STRING(ds->ds[index].type));
407 res = asprintf(&temp_str, "%s, \"collectd_data_source_type\": \"%s\"", ret_str, ds_type);
410 ERROR("write_sensu plugin: Unable to alloc memory");
415 res = asprintf(&temp_str, "%s, \"collectd_data_source_type\": \"%s\"", ret_str, DS_TYPE_TO_STRING(ds->ds[index].type));
418 ERROR("write_sensu plugin: Unable to alloc memory");
424 // incorporate the data source name
425 res = asprintf(&temp_str, "%s, \"collectd_data_source_name\": \"%s\"", ret_str, ds->ds[index].name);
428 ERROR("write_sensu plugin: Unable to alloc memory");
433 // incorporate the data source index
435 char ds_index[DATA_MAX_NAME_LEN];
436 ssnprintf (ds_index, sizeof (ds_index), "%zu", index);
437 res = asprintf(&temp_str, "%s, \"collectd_data_source_index\": %s", ret_str, ds_index);
440 ERROR("write_sensu plugin: Unable to alloc memory");
446 // add key value attributes from config if any
447 for (i = 0; i < sensu_attrs_num; i += 2) {
448 res = asprintf(&temp_str, "%s, \"%s\": \"%s\"", ret_str, sensu_attrs[i], sensu_attrs[i+1]);
451 ERROR("write_sensu plugin: Unable to alloc memory");
457 // incorporate sensu tags from config if any
458 if (strlen(sensu_tags) != 0) {
459 res = asprintf(&temp_str, "%s, %s", ret_str, sensu_tags);
462 ERROR("write_sensu plugin: Unable to alloc memory");
468 // calculate the value and set to a string
469 if (ds->ds[index].type == DS_TYPE_GAUGE) {
470 res = asprintf(&value_str, GAUGE_FORMAT, vl->values[index].gauge);
473 ERROR("write_sensu plugin: Unable to alloc memory");
476 } else if (rates != NULL) {
477 res = asprintf(&value_str, GAUGE_FORMAT, rates[index]);
480 ERROR("write_sensu plugin: Unable to alloc memory");
484 if (ds->ds[index].type == DS_TYPE_DERIVE) {
485 res = asprintf(&value_str, "%"PRIi64, vl->values[index].derive);
488 ERROR("write_sensu plugin: Unable to alloc memory");
492 else if (ds->ds[index].type == DS_TYPE_ABSOLUTE) {
493 res = asprintf(&value_str, "%"PRIu64, vl->values[index].absolute);
496 ERROR("write_sensu plugin: Unable to alloc memory");
501 res = asprintf(&value_str, "%llu", vl->values[index].counter);
504 ERROR("write_sensu plugin: Unable to alloc memory");
510 // Generate the full service name
511 sensu_format_name2(name_buffer, sizeof(name_buffer),
512 vl->host, vl->plugin, vl->plugin_instance,
513 vl->type, vl->type_instance, host->separator);
514 if (host->always_append_ds || (ds->ds_num > 1)) {
515 if (host->event_service_prefix == NULL)
516 ssnprintf(service_buffer, sizeof(service_buffer), "%s.%s",
517 name_buffer, ds->ds[index].name);
519 ssnprintf(service_buffer, sizeof(service_buffer), "%s%s.%s",
520 host->event_service_prefix, name_buffer, ds->ds[index].name);
522 if (host->event_service_prefix == NULL)
523 sstrncpy(service_buffer, name_buffer, sizeof(service_buffer));
525 ssnprintf(service_buffer, sizeof(service_buffer), "%s%s",
526 host->event_service_prefix, name_buffer);
529 // Replace collectd sensor name reserved characters so that time series DB is happy
530 in_place_replace_sensu_name_reserved(service_buffer);
532 // finalize the buffer by setting the output and closing curly bracket
533 res = asprintf(&temp_str, "%s, \"output\": \"%s %s %ld\"}\n", ret_str, service_buffer, value_str, CDTIME_T_TO_TIME_T(vl->time));
537 ERROR("write_sensu plugin: Unable to alloc memory");
542 DEBUG("write_sensu plugin: Successfully created json for metric: "
543 "host = \"%s\", service = \"%s\"",
544 vl->host, service_buffer);
546 } /* }}} char *sensu_value_to_json */
549 * Uses replace_str2() implementation from
550 * http://creativeandcritical.net/str-replace-c/
551 * copyright (c) Laird Shaw, under public domain.
553 char *replace_str(const char *str, const char *old, /* {{{ */
558 size_t oldlen = strlen(old);
559 size_t count = strlen(new);
561 size_t newlen = count;
562 int samesize = (oldlen == newlen);
565 for (count = 0, p = str; (q = strstr(p, old)) != NULL; p = q + oldlen)
567 /* This is undefined if p - str > PTRDIFF_MAX */
568 retlen = p - str + strlen(p) + count * (newlen - oldlen);
570 retlen = strlen(str);
572 ret = malloc(retlen + 1);
575 // added to original: not optimized, but keeps valgrind happy.
576 memset(ret, 0, retlen + 1);
581 /* If the old and new strings are different lengths - in other
582 * words we have already iterated through with strstr above,
583 * and thus we know how many times we need to call it - then we
584 * can avoid the final (potentially lengthy) call to strstr,
585 * which we already know is going to return NULL, by
586 * decrementing and checking count.
588 if (!samesize && !count--)
590 /* Otherwise i.e. when the old and new strings are the same
591 * length, and we don't know how many times to call strstr,
592 * we must check for a NULL return here (we check it in any
593 * event, to avoid further conditions, and because there's
594 * no harm done with the check even when the old and new
595 * strings are different lengths).
597 if ((q = strstr(p, old)) == NULL)
599 /* This is undefined if q - p > PTRDIFF_MAX */
603 memcpy(r, new, newlen);
607 strncpy(r, p, strlen(p));
610 } /* }}} char *replace_str */
612 static char *replace_json_reserved(const char *message) /* {{{ */
614 char *msg = replace_str(message, "\\", "\\\\");
616 ERROR("write_sensu plugin: Unable to alloc memory");
619 char *tmp = replace_str(msg, "\"", "\\\"");
622 ERROR("write_sensu plugin: Unable to alloc memory");
625 msg = replace_str(tmp, "\n", "\\\n");
628 ERROR("write_sensu plugin: Unable to alloc memory");
632 } /* }}} char *replace_json_reserved */
634 static char *sensu_notification_to_json(struct sensu_host *host, /* {{{ */
635 notification_t const *n)
637 char service_buffer[6 * DATA_MAX_NAME_LEN];
638 char const *severity;
639 notification_meta_t *meta;
645 // add the severity/status
646 switch (n->severity) {
652 severity = "WARNING";
656 severity = "CRITICAL";
660 severity = "UNKNOWN";
663 res = asprintf(&temp_str, "{\"status\": %d", status);
665 ERROR("write_sensu plugin: Unable to alloc memory");
670 // incorporate the timestamp
671 res = asprintf(&temp_str, "%s, \"timestamp\": %ld", ret_str, CDTIME_T_TO_TIME_T(n->time));
674 ERROR("write_sensu plugin: Unable to alloc memory");
679 char *handlers_str = build_json_str_list("handlers", &(host->notification_handlers));
680 if (handlers_str == NULL) {
681 ERROR("write_sensu plugin: Unable to alloc memory");
684 // incorporate the handlers
685 if (strlen(handlers_str) != 0) {
686 res = asprintf(&temp_str, "%s, %s", ret_str, handlers_str);
690 ERROR("write_sensu plugin: Unable to alloc memory");
698 // incorporate the plugin name information if any
699 if (n->plugin[0] != 0) {
700 res = asprintf(&temp_str, "%s, \"collectd_plugin\": \"%s\"", ret_str, n->plugin);
703 ERROR("write_sensu plugin: Unable to alloc memory");
709 // incorporate the plugin type if any
710 if (n->type[0] != 0) {
711 res = asprintf(&temp_str, "%s, \"collectd_plugin_type\": \"%s\"", ret_str, n->type);
714 ERROR("write_sensu plugin: Unable to alloc memory");
720 // incorporate the plugin instance if any
721 if (n->plugin_instance[0] != 0) {
722 res = asprintf(&temp_str, "%s, \"collectd_plugin_instance\": \"%s\"", ret_str, n->plugin_instance);
725 ERROR("write_sensu plugin: Unable to alloc memory");
731 // incorporate the plugin type instance if any
732 if (n->type_instance[0] != 0) {
733 res = asprintf(&temp_str, "%s, \"collectd_plugin_type_instance\": \"%s\"", ret_str, n->type_instance);
736 ERROR("write_sensu plugin: Unable to alloc memory");
742 // add key value attributes from config if any
743 for (i = 0; i < sensu_attrs_num; i += 2) {
744 res = asprintf(&temp_str, "%s, \"%s\": \"%s\"", ret_str, sensu_attrs[i], sensu_attrs[i+1]);
747 ERROR("write_sensu plugin: Unable to alloc memory");
753 // incorporate sensu tags from config if any
754 if (strlen(sensu_tags) != 0) {
755 res = asprintf(&temp_str, "%s, %s", ret_str, sensu_tags);
758 ERROR("write_sensu plugin: Unable to alloc memory");
764 // incorporate the service name
765 sensu_format_name2(service_buffer, sizeof(service_buffer),
766 /* host */ "", n->plugin, n->plugin_instance,
767 n->type, n->type_instance, host->separator);
768 // replace sensu event name chars that are considered illegal
769 in_place_replace_sensu_name_reserved(service_buffer);
770 res = asprintf(&temp_str, "%s, \"name\": \"%s\"", ret_str, &service_buffer[1]);
773 ERROR("write_sensu plugin: Unable to alloc memory");
778 // incorporate the check output
779 if (n->message[0] != 0) {
780 char *msg = replace_json_reserved(n->message);
782 ERROR("write_sensu plugin: Unable to alloc memory");
785 res = asprintf(&temp_str, "%s, \"output\": \"%s - %s\"", ret_str, severity, msg);
789 ERROR("write_sensu plugin: Unable to alloc memory");
795 // Pull in values from threshold and add extra attributes
796 for (meta = n->meta; meta != NULL; meta = meta->next) {
797 if (strcasecmp("CurrentValue", meta->name) == 0 && meta->type == NM_TYPE_DOUBLE) {
798 res = asprintf(&temp_str, "%s, \"current_value\": \"%.8f\"", ret_str, meta->nm_value.nm_double);
801 ERROR("write_sensu plugin: Unable to alloc memory");
806 if (meta->type == NM_TYPE_STRING) {
807 res = asprintf(&temp_str, "%s, \"%s\": \"%s\"", ret_str, meta->name, meta->nm_value.nm_string);
810 ERROR("write_sensu plugin: Unable to alloc memory");
817 // close the curly bracket
818 res = asprintf(&temp_str, "%s}\n", ret_str);
821 ERROR("write_sensu plugin: Unable to alloc memory");
826 DEBUG("write_sensu plugin: Successfully created JSON for notification: "
827 "host = \"%s\", service = \"%s\", state = \"%s\"",
828 n->host, service_buffer, severity);
830 } /* }}} char *sensu_notification_to_json */
832 static int sensu_send_msg(struct sensu_host *host, const char *msg) /* {{{ */
837 status = sensu_connect(host);
841 buffer_len = strlen(msg);
843 status = (int) swrite(host->s, msg, buffer_len);
844 sensu_close_socket(host);
848 ERROR("write_sensu plugin: Sending to Sensu at %s:%s failed: %s",
849 (host->node != NULL) ? host->node : SENSU_HOST,
850 (host->service != NULL) ? host->service : SENSU_PORT,
851 sstrerror(errno, errbuf, sizeof(errbuf)));
856 } /* }}} int sensu_send_msg */
859 static int sensu_send(struct sensu_host *host, char const *msg) /* {{{ */
863 status = sensu_send_msg(host, msg);
865 host->flags &= ~F_READY;
866 if (host->res != NULL) {
867 freeaddrinfo(host->res);
874 } /* }}} int sensu_send */
877 static int sensu_write(const data_set_t *ds, /* {{{ */
878 const value_list_t *vl,
882 int statuses[vl->values_len];
883 struct sensu_host *host = ud->data;
884 gauge_t *rates = NULL;
888 pthread_mutex_lock(&host->lock);
889 memset(statuses, 0, vl->values_len * sizeof(*statuses));
891 if (host->store_rates) {
892 rates = uc_get_rate(ds, vl);
894 ERROR("write_sensu plugin: uc_get_rate failed.");
895 pthread_mutex_unlock(&host->lock);
899 for (i = 0; i < vl->values_len; i++) {
900 msg = sensu_value_to_json(host, ds, vl, (int) i, rates, statuses[i]);
903 pthread_mutex_unlock(&host->lock);
906 status = sensu_send(host, msg);
909 ERROR("write_sensu plugin: sensu_send failed with status %i", status);
910 pthread_mutex_unlock(&host->lock);
916 pthread_mutex_unlock(&host->lock);
918 } /* }}} int sensu_write */
920 static int sensu_notification(const notification_t *n, user_data_t *ud) /* {{{ */
923 struct sensu_host *host = ud->data;
926 pthread_mutex_lock(&host->lock);
928 msg = sensu_notification_to_json(host, n);
930 pthread_mutex_unlock(&host->lock);
934 status = sensu_send(host, msg);
937 ERROR("write_sensu plugin: sensu_send failed with status %i", status);
938 pthread_mutex_unlock(&host->lock);
941 } /* }}} int sensu_notification */
943 static void sensu_free(void *p) /* {{{ */
945 struct sensu_host *host = p;
950 pthread_mutex_lock(&host->lock);
952 host->reference_count--;
953 if (host->reference_count > 0) {
954 pthread_mutex_unlock(&host->lock);
958 sensu_close_socket(host);
959 if (host->res != NULL) {
960 freeaddrinfo(host->res);
963 sfree(host->service);
964 sfree(host->event_service_prefix);
967 sfree(host->separator);
968 free_str_list(&(host->metric_handlers));
969 free_str_list(&(host->notification_handlers));
970 pthread_mutex_destroy(&host->lock);
972 } /* }}} void sensu_free */
975 static int sensu_config_node(oconfig_item_t *ci) /* {{{ */
977 struct sensu_host *host = NULL;
980 oconfig_item_t *child;
981 char callback_name[DATA_MAX_NAME_LEN];
984 if ((host = calloc(1, sizeof(*host))) == NULL) {
985 ERROR("write_sensu plugin: calloc failed.");
988 pthread_mutex_init(&host->lock, NULL);
989 host->reference_count = 1;
991 host->service = NULL;
992 host->notifications = 0;
994 host->store_rates = 1;
995 host->always_append_ds = 0;
996 host->metric_handlers.nb_strs = 0;
997 host->metric_handlers.strs = NULL;
998 host->notification_handlers.nb_strs = 0;
999 host->notification_handlers.strs = NULL;
1000 host->separator = strdup("/");
1001 if (host->separator == NULL) {
1002 ERROR("write_sensu plugin: Unable to alloc memory");
1007 status = cf_util_get_string(ci, &host->name);
1009 WARNING("write_sensu plugin: Required host name is missing.");
1014 for (i = 0; i < ci->children_num; i++) {
1015 child = &ci->children[i];
1018 if (strcasecmp("Host", child->key) == 0) {
1019 status = cf_util_get_string(child, &host->node);
1022 } else if (strcasecmp("Notifications", child->key) == 0) {
1023 status = cf_util_get_boolean(child, &host->notifications);
1026 } else if (strcasecmp("Metrics", child->key) == 0) {
1027 status = cf_util_get_boolean(child, &host->metrics);
1030 } else if (strcasecmp("EventServicePrefix", child->key) == 0) {
1031 status = cf_util_get_string(child, &host->event_service_prefix);
1034 } else if (strcasecmp("Separator", child->key) == 0) {
1035 status = cf_util_get_string(child, &host->separator);
1038 } else if (strcasecmp("MetricHandler", child->key) == 0) {
1039 char *temp_str = NULL;
1040 status = cf_util_get_string(child, &temp_str);
1043 status = add_str_to_list(&(host->metric_handlers), temp_str);
1047 } else if (strcasecmp("NotificationHandler", child->key) == 0) {
1048 char *temp_str = NULL;
1049 status = cf_util_get_string(child, &temp_str);
1052 status = add_str_to_list(&(host->notification_handlers), temp_str);
1056 } else if (strcasecmp("Port", child->key) == 0) {
1057 status = cf_util_get_service(child, &host->service);
1059 ERROR("write_sensu plugin: Invalid argument "
1060 "configured for the \"Port\" "
1064 } else if (strcasecmp("StoreRates", child->key) == 0) {
1065 status = cf_util_get_boolean(child, &host->store_rates);
1068 } else if (strcasecmp("AlwaysAppendDS", child->key) == 0) {
1069 status = cf_util_get_boolean(child,
1070 &host->always_append_ds);
1074 WARNING("write_sensu plugin: ignoring unknown config "
1075 "option: \"%s\"", child->key);
1083 if (host->metrics && (host->metric_handlers.nb_strs == 0)) {
1085 WARNING("write_sensu plugin: metrics enabled but no MetricHandler defined. Giving up.");
1089 if (host->notifications && (host->notification_handlers.nb_strs == 0)) {
1091 WARNING("write_sensu plugin: notifications enabled but no NotificationHandler defined. Giving up.");
1095 if ((host->notification_handlers.nb_strs > 0) && (host->notifications == 0)) {
1096 WARNING("write_sensu plugin: NotificationHandler given so forcing notifications to be enabled");
1097 host->notifications = 1;
1100 if ((host->metric_handlers.nb_strs > 0) && (host->metrics == 0)) {
1101 WARNING("write_sensu plugin: MetricHandler given so forcing metrics to be enabled");
1105 if (!(host->notifications || host->metrics)) {
1106 WARNING("write_sensu plugin: neither metrics nor notifications enabled. Giving up.");
1111 ssnprintf(callback_name, sizeof(callback_name), "write_sensu/%s", host->name);
1113 ud.free_func = sensu_free;
1115 pthread_mutex_lock(&host->lock);
1117 if (host->metrics) {
1118 status = plugin_register_write(callback_name, sensu_write, &ud);
1120 WARNING("write_sensu plugin: plugin_register_write (\"%s\") "
1121 "failed with status %i.",
1122 callback_name, status);
1124 host->reference_count++;
1127 if (host->notifications) {
1128 status = plugin_register_notification(callback_name, sensu_notification, &ud);
1130 WARNING("write_sensu plugin: plugin_register_notification (\"%s\") "
1131 "failed with status %i.",
1132 callback_name, status);
1134 host->reference_count++;
1137 if (host->reference_count <= 1) {
1138 /* Both callbacks failed => free memory.
1139 * We need to unlock here, because sensu_free() will lock.
1140 * This is not a race condition, because we're the only one
1141 * holding a reference. */
1142 pthread_mutex_unlock(&host->lock);
1147 host->reference_count--;
1148 pthread_mutex_unlock(&host->lock);
1151 } /* }}} int sensu_config_node */
1153 static int sensu_config(oconfig_item_t *ci) /* {{{ */
1156 oconfig_item_t *child;
1158 struct str_list sensu_tags_arr;
1160 sensu_tags_arr.nb_strs = 0;
1161 sensu_tags_arr.strs = NULL;
1163 for (i = 0; i < ci->children_num; i++) {
1164 child = &ci->children[i];
1166 if (strcasecmp("Node", child->key) == 0) {
1167 sensu_config_node(child);
1168 } else if (strcasecmp(child->key, "attribute") == 0) {
1169 if (child->values_num != 2) {
1170 WARNING("sensu attributes need both a key and a value.");
1173 if (child->values[0].type != OCONFIG_TYPE_STRING ||
1174 child->values[1].type != OCONFIG_TYPE_STRING) {
1175 WARNING("sensu attribute needs string arguments.");
1179 strarray_add(&sensu_attrs, &sensu_attrs_num, child->values[0].value.string);
1180 strarray_add(&sensu_attrs, &sensu_attrs_num, child->values[1].value.string);
1182 DEBUG("write_sensu plugin: New attribute: %s => %s",
1183 child->values[0].value.string,
1184 child->values[1].value.string);
1185 } else if (strcasecmp(child->key, "tag") == 0) {
1187 status = cf_util_get_string(child, &tmp);
1191 status = add_str_to_list(&sensu_tags_arr, tmp);
1195 DEBUG("write_sensu plugin: Got tag: %s", tmp);
1197 WARNING("write_sensu plugin: Ignoring unknown "
1198 "configuration option \"%s\" at top level.",
1202 if (sensu_tags_arr.nb_strs > 0) {
1204 sensu_tags = build_json_str_list("tags", &sensu_tags_arr);
1205 free_str_list(&sensu_tags_arr);
1206 if (sensu_tags == NULL) {
1207 ERROR("write_sensu plugin: Unable to alloc memory");
1212 } /* }}} int sensu_config */
1214 void module_register(void)
1216 plugin_register_complex_config("write_sensu", sensu_config);
1219 /* vim: set sw=8 sts=8 ts=8 noet : */