[METRICS-383] Add documentation for write_tsdb
[collectd.git] / src / write_tsdb.c
1 /**
2  * collectd - src/write_tsdb.c
3  * Copyright (C) 2012       Pierre-Yves Ritschard
4  * Copyright (C) 2011       Scott Sanders
5  * Copyright (C) 2009       Paul Sadauskas
6  * Copyright (C) 2009       Doug MacEachern
7  * Copyright (C) 2007-2012  Florian octo Forster
8  * Copyright (C) 2013-2014  Limelight Networks, Inc.
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by the
11  * Free Software Foundation; only version 2 of the License is applicable.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
21  *
22  * Based on the write_graphite plugin. Authors:
23  *   Florian octo Forster <octo at collectd.org>
24  *   Doug MacEachern <dougm at hyperic.com>
25  *   Paul Sadauskas <psadauskas at gmail.com>
26  *   Scott Sanders <scott at jssjr.com>
27  *   Pierre-Yves Ritschard <pyr at spootnik.org>
28  * write_tsdb Authors:
29  *   Brett Hawn <bhawn at llnw.com>
30  *   Kevin Bowling <kbowling@llnw.com>
31  **/
32
33 /* write_tsdb plugin configuation example
34  *
35  * <Plugin write_tsdb>
36  *   <Node>
37  *     Host "localhost"
38  *     Port "4242"
39  *     HostTags "status=production deviceclass=www"
40  *   </Node>
41  * </Plugin>
42  */
43
44 #include "collectd.h"
45 #include "common.h"
46 #include "plugin.h"
47 #include "configfile.h"
48
49 #include "utils_cache.h"
50 #include "utils_parse_option.h"
51
52 #include <pthread.h>
53 #include <sys/socket.h>
54 #include <netdb.h>
55
56 #ifndef WT_DEFAULT_NODE
57 # define WT_DEFAULT_NODE "localhost"
58 #endif
59
60 #ifndef WT_DEFAULT_SERVICE
61 # define WT_DEFAULT_SERVICE "4242"
62 #endif
63
64 #ifndef WT_DEFAULT_ESCAPE
65 # define WT_DEFAULT_ESCAPE '.'
66 #endif
67
68 /* Ethernet - (IPv6 + TCP) = 1500 - (40 + 32) = 1428 */
69 #ifndef WT_SEND_BUF_SIZE
70 # define WT_SEND_BUF_SIZE 1428
71 #endif
72
73 /*
74  * Private variables
75  */
76 struct wt_callback
77 {
78     int      sock_fd;
79
80     char     *node;
81     char     *service;
82     char     *host_tags;
83
84     _Bool    store_rates;
85     _Bool    always_append_ds;
86
87     char     send_buf[WT_SEND_BUF_SIZE];
88     size_t   send_buf_free;
89     size_t   send_buf_fill;
90     cdtime_t send_buf_init_time;
91
92     pthread_mutex_t send_lock;
93 };
94
95
96 /*
97  * Functions
98  */
99 static void wt_reset_buffer(struct wt_callback *cb)
100 {
101     memset(cb->send_buf, 0, sizeof(cb->send_buf));
102     cb->send_buf_free = sizeof(cb->send_buf);
103     cb->send_buf_fill = 0;
104     cb->send_buf_init_time = cdtime();
105 }
106
107 static int wt_send_buffer(struct wt_callback *cb)
108 {
109     ssize_t status = 0;
110
111     status = swrite(cb->sock_fd, cb->send_buf, strlen(cb->send_buf));
112     if (status < 0)
113     {
114         char errbuf[1024];
115         ERROR("write_tsdb plugin: send failed with status %zi (%s)",
116               status, sstrerror (errno, errbuf, sizeof (errbuf)));
117
118         close (cb->sock_fd);
119         cb->sock_fd = -1;
120
121         return -1;
122     }
123
124     return 0;
125 }
126
127 /* NOTE: You must hold cb->send_lock when calling this function! */
128 static int wt_flush_nolock(cdtime_t timeout, struct wt_callback *cb)
129 {
130     int status;
131
132     DEBUG("write_tsdb plugin: wt_flush_nolock: timeout = %.3f; "
133           "send_buf_fill = %zu;",
134           (double)timeout,
135           cb->send_buf_fill);
136
137     /* timeout == 0  => flush unconditionally */
138     if (timeout > 0)
139     {
140         cdtime_t now;
141
142         now = cdtime();
143         if ((cb->send_buf_init_time + timeout) > now)
144             return 0;
145     }
146
147     if (cb->send_buf_fill <= 0)
148     {
149         cb->send_buf_init_time = cdtime();
150         return 0;
151     }
152
153     status = wt_send_buffer(cb);
154     wt_reset_buffer(cb);
155
156     return status;
157 }
158
159 static int wt_callback_init(struct wt_callback *cb)
160 {
161     struct addrinfo ai_hints;
162     struct addrinfo *ai_list;
163     struct addrinfo *ai_ptr;
164     int status;
165
166     const char *node = cb->node ? cb->node : WT_DEFAULT_NODE;
167     const char *service = cb->service ? cb->service : WT_DEFAULT_SERVICE;
168
169     if (cb->sock_fd > 0)
170         return 0;
171
172     memset(&ai_hints, 0, sizeof(ai_hints));
173 #ifdef AI_ADDRCONFIG
174     ai_hints.ai_flags    |= AI_ADDRCONFIG;
175 #endif
176     ai_hints.ai_family   = AF_UNSPEC;
177     ai_hints.ai_socktype = SOCK_STREAM;
178
179     ai_list = NULL;
180
181     status = getaddrinfo(node, service, &ai_hints, &ai_list);
182     if (status != 0)
183     {
184         ERROR("write_tsdb plugin: getaddrinfo (%s, %s) failed: %s",
185               node, service, gai_strerror (status));
186         return -1;
187     }
188
189     assert (ai_list != NULL);
190     for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
191     {
192         cb->sock_fd = socket(ai_ptr->ai_family, ai_ptr->ai_socktype,
193                              ai_ptr->ai_protocol);
194         if (cb->sock_fd < 0)
195             continue;
196
197         status = connect(cb->sock_fd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
198         if (status != 0)
199         {
200             close(cb->sock_fd);
201             cb->sock_fd = -1;
202             continue;
203         }
204
205         break;
206     }
207
208     freeaddrinfo(ai_list);
209
210     if (cb->sock_fd < 0)
211     {
212         char errbuf[1024];
213         ERROR("write_tsdb plugin: Connecting to %s:%s failed. "
214               "The last error was: %s", node, service,
215               sstrerror (errno, errbuf, sizeof(errbuf)));
216         close(cb->sock_fd);
217         return -1;
218     }
219
220     wt_reset_buffer(cb);
221
222     return 0;
223 }
224
225 static void wt_callback_free(void *data)
226 {
227     struct wt_callback *cb;
228
229     if (data == NULL)
230         return;
231
232     cb = data;
233
234     pthread_mutex_lock(&cb->send_lock);
235
236     wt_flush_nolock(0, cb);
237
238     close(cb->sock_fd);
239     cb->sock_fd = -1;
240
241     sfree(cb->node);
242     sfree(cb->service);
243     sfree(cb->host_tags);
244
245     pthread_mutex_destroy(&cb->send_lock);
246
247     sfree(cb);
248 }
249
250 static int wt_flush(cdtime_t timeout,
251                     const char *identifier __attribute__((unused)),
252                     user_data_t *user_data)
253 {
254     struct wt_callback *cb;
255     int status;
256
257     if (user_data == NULL)
258         return -EINVAL;
259
260     cb = user_data->data;
261
262     pthread_mutex_lock(&cb->send_lock);
263
264     if (cb->sock_fd < 0)
265     {
266         status = wt_callback_init(cb);
267         if (status != 0)
268         {
269             ERROR("write_tsdb plugin: wt_callback_init failed.");
270             pthread_mutex_unlock(&cb->send_lock);
271             return -1;
272         }
273     }
274
275     status = wt_flush_nolock(timeout, cb);
276     pthread_mutex_unlock(&cb->send_lock);
277
278     return status;
279 }
280
281 static int wt_format_values(char *ret, size_t ret_len,
282                             int ds_num, const data_set_t *ds,
283                             const value_list_t *vl,
284                             _Bool store_rates)
285 {
286     size_t offset = 0;
287     int status;
288     gauge_t *rates = NULL;
289
290     assert(0 == strcmp (ds->type, vl->type));
291
292     memset(ret, 0, ret_len);
293
294 #define BUFFER_ADD(...) do { \
295         status = ssnprintf (ret + offset, ret_len - offset, \
296                             __VA_ARGS__); \
297         if (status < 1) \
298         { \
299             sfree(rates); \
300             return -1; \
301         } \
302         else if (((size_t) status) >= (ret_len - offset)) \
303         { \
304             sfree(rates); \
305             return -1; \
306         } \
307         else \
308             offset += ((size_t) status); \
309 } while (0)
310
311     if (ds->ds[ds_num].type == DS_TYPE_GAUGE)
312         BUFFER_ADD("%f", vl->values[ds_num].gauge);
313     else if (store_rates)
314     {
315         if (rates == NULL)
316             rates = uc_get_rate (ds, vl);
317         if (rates == NULL)
318         {
319             WARNING("format_values: "
320                     "uc_get_rate failed.");
321             return -1;
322         }
323         BUFFER_ADD("%f", rates[ds_num]);
324     }
325     else if (ds->ds[ds_num].type == DS_TYPE_COUNTER)
326         BUFFER_ADD("%llu", vl->values[ds_num].counter);
327     else if (ds->ds[ds_num].type == DS_TYPE_DERIVE)
328         BUFFER_ADD("%" PRIi64, vl->values[ds_num].derive);
329     else if (ds->ds[ds_num].type == DS_TYPE_ABSOLUTE)
330         BUFFER_ADD("%" PRIu64, vl->values[ds_num].absolute);
331     else
332     {
333         ERROR("format_values plugin: Unknown data source type: %i",
334               ds->ds[ds_num].type);
335         sfree(rates);
336         return -1;
337     }
338
339 #undef BUFFER_ADD
340
341     sfree(rates);
342     return 0;
343 }
344
345 static int wt_format_name(char *ret, int ret_len,
346                           const value_list_t *vl,
347                           const struct wt_callback *cb,
348                           const char *ds_name)
349 {
350     int status;
351     char *temp = NULL;
352     char *prefix = "";
353     const char *meta_prefix = "tsdb_prefix";
354
355     if (vl->meta) {
356         status = meta_data_get_string(vl->meta, meta_prefix, &temp);
357         if (status == -ENOENT) {
358             /* defaults to empty string */
359         } else if (status < 0) {
360             sfree(temp);
361             return status;
362         } else {
363             prefix = temp;
364         }
365     }
366
367     if (ds_name != NULL) {
368         if (vl->plugin_instance[0] == '\0') {
369             ssnprintf(ret, ret_len, "%s%s.%s",
370                       prefix, vl->plugin, ds_name);
371         } else if (vl->type_instance == '\0') {
372             ssnprintf(ret, ret_len, "%s%s.%s.%s.%s",
373                       prefix, vl->plugin, vl->plugin_instance,
374                       vl->type_instance, ds_name);
375         } else {
376             ssnprintf(ret, ret_len, "%s%s.%s.%s.%s",
377                       prefix, vl->plugin, vl->plugin_instance, vl->type,
378                       ds_name);
379         }
380     } else if (vl->plugin_instance[0] == '\0') {
381         if (vl->type_instance[0] == '\0')
382             ssnprintf(ret, ret_len, "%s%s.%s",
383                       prefix, vl->plugin, vl->type);
384         else
385             ssnprintf(ret, ret_len, "%s%s.%s",
386                       prefix, vl->plugin, vl->type_instance);
387     } else if (vl->type_instance[0] == '\0') {
388         ssnprintf(ret, ret_len, "%s%s.%s.%s",
389                   prefix, vl->plugin, vl->plugin_instance, vl->type);
390     } else {
391         ssnprintf(ret, ret_len, "%s%s.%s.%s",
392                   prefix, vl->plugin, vl->plugin_instance, vl->type_instance);
393     }
394
395     sfree(temp);
396     return 0;
397 }
398
399 static int wt_send_message (const char* key, const char* value,
400                             cdtime_t time, struct wt_callback *cb,
401                             const char* host, meta_data_t *md)
402 {
403     int status;
404     int message_len;
405     char *temp = NULL;
406     char *tags = "";
407     char message[1024];
408     char *host_tags = cb->host_tags ? cb->host_tags : "";
409     const char *message_fmt;
410     const char *meta_tsdb = "tsdb_tags";
411
412     /* skip if value is NaN */
413     if (value[0] == 'n')
414         return 0;
415
416     if (md) {
417         status = meta_data_get_string(md, meta_tsdb, &temp);
418         if (status == -ENOENT) {
419             /* defaults to empty string */
420         } else if (status < 0) {
421             ERROR("write_tsdb plugin: tags metadata get failure");
422             sfree(temp);
423             pthread_mutex_unlock(&cb->send_lock);
424             return status;
425         } else {
426             tags = temp;
427         }
428     }
429
430     message_fmt = "put %s %u %s fqdn=%s %s %s\r\n";
431     message_len = ssnprintf (message, sizeof(message),
432                                       message_fmt,
433                                       key,
434                                       (unsigned int)CDTIME_T_TO_TIME_T(
435                                           time),
436                                       value,
437                                       host,
438                                       tags,
439                                       host_tags);
440
441     sfree(temp);
442
443     if (message_len >= sizeof(message)) {
444         ERROR("write_tsdb plugin: message buffer too small: "
445               "Need %d bytes.", message_len + 1);
446         return -1;
447     }
448
449     pthread_mutex_lock(&cb->send_lock);
450
451     if (cb->sock_fd < 0)
452     {
453         status = wt_callback_init(cb);
454         if (status != 0)
455         {
456             ERROR("write_tsdb plugin: wt_callback_init failed.");
457             pthread_mutex_unlock(&cb->send_lock);
458             return -1;
459         }
460     }
461
462     if (message_len >= cb->send_buf_free)
463     {
464         status = wt_flush_nolock(0, cb);
465         if (status != 0)
466         {
467             pthread_mutex_unlock(&cb->send_lock);
468             return status;
469         }
470     }
471
472     /* Assert that we have enough space for this message. */
473     assert(message_len < cb->send_buf_free);
474
475     /* `message_len + 1' because `message_len' does not include the
476      * trailing null byte. Neither does `send_buffer_fill'. */
477     memcpy(cb->send_buf + cb->send_buf_fill,
478             message, message_len + 1);
479     cb->send_buf_fill += message_len;
480     cb->send_buf_free -= message_len;
481
482     DEBUG("write_tsdb plugin: [%s]:%s buf %zu/%zu (%.1f %%) \"%s\"",
483           cb->node,
484           cb->service,
485           cb->send_buf_fill, sizeof(cb->send_buf),
486           100.0 * ((double) cb->send_buf_fill) /
487           ((double) sizeof(cb->send_buf)),
488           message);
489
490     pthread_mutex_unlock(&cb->send_lock);
491
492     return 0;
493 }
494
495 static int wt_write_messages(const data_set_t *ds, const value_list_t *vl,
496                              struct wt_callback *cb)
497 {
498     char key[10*DATA_MAX_NAME_LEN];
499     char values[512];
500
501     int status, i;
502
503     if (0 != strcmp(ds->type, vl->type))
504     {
505         ERROR("write_tsdb plugin: DS type does not match "
506               "value list type");
507         return -1;
508     }
509
510     for (i = 0; i < ds->ds_num; i++)
511     {
512         const char *ds_name = NULL;
513
514         if (cb->always_append_ds || (ds->ds_num > 1))
515             ds_name = ds->ds[i].name;
516
517         /* Copy the identifier to 'key' and escape it. */
518         status = wt_format_name(key, sizeof(key), vl, cb, ds_name);
519         if (status != 0)
520         {
521             ERROR("write_tsdb plugin: error with format_name");
522             return status;
523         }
524
525         escape_string(key, sizeof(key));
526         /* Convert the values to an ASCII representation and put that into
527          * 'values'. */
528         status = wt_format_values(values, sizeof(values), i, ds, vl,
529                                   cb->store_rates);
530         if (status != 0)
531         {
532             ERROR("write_tsdb plugin: error with "
533                   "wt_format_values");
534             return status;
535         }
536
537         /* Send the message to tsdb */
538         status = wt_send_message(key, values, vl->time, cb, vl->host, vl->meta);
539         if (status != 0)
540         {
541             ERROR("write_tsdb plugin: error with "
542                   "wt_send_message");
543             return status;
544         }
545     }
546
547     return 0;
548 }
549
550 static int wt_write(const data_set_t *ds, const value_list_t *vl,
551                     user_data_t *user_data)
552 {
553     struct wt_callback *cb;
554     int status;
555
556     if (user_data == NULL)
557         return EINVAL;
558
559     cb = user_data->data;
560
561     status = wt_write_messages(ds, vl, cb);
562
563     return status;
564 }
565
566 static int wt_config_tsd(oconfig_item_t *ci)
567 {
568     struct wt_callback *cb;
569     user_data_t user_data;
570     char callback_name[DATA_MAX_NAME_LEN];
571     int i;
572
573     cb = malloc(sizeof(*cb));
574     if (cb == NULL)
575     {
576         ERROR("write_tsdb plugin: malloc failed.");
577         return -1;
578     }
579     memset(cb, 0, sizeof(*cb));
580     cb->sock_fd = -1;
581     cb->node = NULL;
582     cb->service = NULL;
583     cb->host_tags = NULL;
584     cb->store_rates = 0;
585
586     pthread_mutex_init (&cb->send_lock, NULL);
587
588     for (i = 0; i < ci->children_num; i++)
589     {
590         oconfig_item_t *child = ci->children + i;
591
592         if (strcasecmp("Host", child->key) == 0)
593             cf_util_get_string(child, &cb->node);
594         else if (strcasecmp("Port", child->key) == 0)
595             cf_util_get_service(child, &cb->service);
596         else if (strcasecmp("HostTags", child->key) == 0)
597             cf_util_get_string(child, &cb->host_tags);
598         else if (strcasecmp("StoreRates", child->key) == 0)
599             cf_util_get_boolean(child, &cb->store_rates);
600         else if (strcasecmp("AlwaysAppendDS", child->key) == 0)
601             cf_util_get_boolean(child, &cb->always_append_ds);
602         else
603         {
604             ERROR("write_tsdb plugin: Invalid configuration "
605                   "option: %s.", child->key);
606         }
607     }
608
609     ssnprintf(callback_name, sizeof(callback_name), "write_tsdb/%s/%s",
610               cb->node != NULL ? cb->node : WT_DEFAULT_NODE,
611               cb->service != NULL ? cb->service : WT_DEFAULT_SERVICE);
612
613     memset(&user_data, 0, sizeof(user_data));
614     user_data.data = cb;
615     user_data.free_func = wt_callback_free;
616     plugin_register_write(callback_name, wt_write, &user_data);
617
618     user_data.free_func = NULL;
619     plugin_register_flush(callback_name, wt_flush, &user_data);
620
621     return 0;
622 }
623
624 static int wt_config(oconfig_item_t *ci)
625 {
626     int i;
627
628     for (i = 0; i < ci->children_num; i++)
629     {
630         oconfig_item_t *child = ci->children + i;
631
632         if (strcasecmp("Node", child->key) == 0)
633             wt_config_tsd(child);
634         else
635         {
636             ERROR("write_tsdb plugin: Invalid configuration "
637                   "option: %s.", child->key);
638         }
639     }
640
641     return 0;
642 }
643
644 void module_register(void)
645 {
646     plugin_register_complex_config("write_tsdb", wt_config);
647 }
648
649 /* vim: set sw=4 ts=4 sts=4 tw=78 et : */