e8bdc65ca0b01febe40326172dfda7254074185c
[collectd.git] / src / write_graphite.c
1 /**
2  * collectd - src/write_graphite.c
3  * Copyright (C) 2011  Scott Sanders
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Author:
19  *   Scott Sanders <scott@jssjr.com>
20  *
21  *   based on the excellent write_http plugin
22  **/
23
24  /* write_graphite plugin configuation example
25   *
26   * <Plugin write_graphite>
27   *   <Carbon>
28   *     Host "localhost"
29   *     Port 2003
30   *     Prefix "collectd"
31   *   </Carbon>
32   * </Plugin>
33   */
34
35 #include "collectd.h"
36 #include "common.h"
37 #include "plugin.h"
38 #include "configfile.h"
39
40 #include "utils_cache.h"
41 #include "utils_parse_option.h"
42
43 /* Folks without pthread will need to disable this plugin. */
44 #include <pthread.h>
45
46 #include <sys/socket.h>
47 #include <sys/stat.h>
48 #include <sys/types.h>
49
50 #include <netinet/in.h>
51 #include <netdb.h>
52
53 #ifndef WG_FORMAT_NAME
54 #define WG_FORMAT_NAME(ret, ret_len, vl, prefix, name) \
55         wg_format_name (ret, ret_len, (vl)->host, (vl)->plugin, \
56                          (vl)->plugin_instance, (vl)->type, \
57                          (vl)->type_instance, prefix, name)
58 #endif
59
60 #ifndef WG_SEND_BUF_SIZE
61 #define WG_SEND_BUF_SIZE 4096
62 #endif
63
64 /*
65  * Private variables
66  */
67 struct wg_callback
68 {
69     int      sock_fd;
70     struct hostent *server;
71
72     char    *host;
73     int      port;
74     char    *prefix;
75
76     char     send_buf[WG_SEND_BUF_SIZE];
77     size_t   send_buf_free;
78     size_t   send_buf_fill;
79     cdtime_t send_buf_init_time;
80
81     pthread_mutex_t send_lock;
82 };
83
84
85 /*
86  * Functions
87  */
88 static void wg_reset_buffer (struct wg_callback *cb)
89 {
90     memset (cb->send_buf, 0, sizeof (cb->send_buf));
91     cb->send_buf_free = sizeof (cb->send_buf);
92     cb->send_buf_fill = 0;
93     cb->send_buf_init_time = cdtime ();
94 }
95
96 static int wg_send_buffer (struct wg_callback *cb)
97 {
98     int status = 0;
99
100     status = write (cb->sock_fd, cb->send_buf, strlen (cb->send_buf));
101     if (status < 0)
102     {
103         ERROR ("write_graphite plugin: send failed with "
104                 "status %i (%s)",
105                 status,
106                 strerror (errno));
107
108         pthread_mutex_lock (&cb->send_lock);
109
110         DEBUG ("write_graphite plugin: closing socket and restting fd "
111                 "so reinit will occur");
112         close (cb->sock_fd);
113         cb->sock_fd = -1;
114
115         pthread_mutex_unlock (&cb->send_lock);
116
117         return (-1);
118     }
119     return (0);
120 }
121
122 static int wg_flush_nolock (cdtime_t timeout, struct wg_callback *cb)
123 {
124     int status;
125
126     DEBUG ("write_graphite plugin: wg_flush_nolock: timeout = %.3f; "
127             "send_buf_fill = %zu;",
128             (double)timeout,
129             cb->send_buf_fill);
130
131     /* timeout == 0  => flush unconditionally */
132     if (timeout > 0)
133     {
134         cdtime_t now;
135
136         now = cdtime ();
137         if ((cb->send_buf_init_time + timeout) > now)
138             return (0);
139     }
140
141     if (cb->send_buf_fill <= 0)
142     {
143         cb->send_buf_init_time = cdtime ();
144         return (0);
145     }
146
147     status = wg_send_buffer (cb);
148     wg_reset_buffer (cb);
149
150     return (status);
151 }
152
153 static int wg_callback_init (struct wg_callback *cb)
154 {
155     int status;
156
157     struct sockaddr_in serv_addr;
158
159     if (cb->sock_fd > 0)
160         return (0);
161
162     cb->sock_fd = socket (AF_INET, SOCK_STREAM, 0);
163     if (cb->sock_fd < 0)
164     {
165         ERROR ("write_graphite plugin: socket failed: %s", strerror (errno));
166         return (-1);
167     }
168     cb->server = gethostbyname(cb->host);
169     if (cb->server == NULL)
170     {
171         ERROR ("write_graphite plugin: no such host");
172         return (-1);
173     }
174     memset (&serv_addr, 0, sizeof (serv_addr));
175     serv_addr.sin_family = AF_INET;
176     memcpy (&serv_addr.sin_addr.s_addr,
177              cb->server->h_addr,
178              cb->server->h_length);
179     serv_addr.sin_port = htons(cb->port);
180
181     status = connect(cb->sock_fd,
182                       (struct sockaddr *) &serv_addr,
183                       sizeof(serv_addr));
184     if (status < 0)
185     {
186         char errbuf[1024];
187         sstrerror (errno, errbuf, sizeof (errbuf));
188         ERROR ("write_graphite plugin: connect failed: %s", errbuf);
189         close (cb->sock_fd);
190         cb->sock_fd = -1;
191         return (-1);
192     }
193
194     wg_reset_buffer (cb);
195
196     return (0);
197 }
198
199 static void wg_callback_free (void *data)
200 {
201     struct wg_callback *cb;
202
203     if (data == NULL)
204         return;
205
206     cb = data;
207
208     wg_flush_nolock (/* timeout = */ 0, cb);
209
210     close(cb->sock_fd);
211     sfree(cb->host);
212     sfree(cb->prefix);
213
214     sfree(cb);
215 }
216
217 static int wg_flush (cdtime_t timeout,
218         const char *identifier __attribute__((unused)),
219         user_data_t *user_data)
220 {
221     struct wg_callback *cb;
222     int status;
223
224     if (user_data == NULL)
225         return (-EINVAL);
226
227     cb = user_data->data;
228
229     pthread_mutex_lock (&cb->send_lock);
230
231     if (cb->sock_fd < 0)
232     {
233         status = wg_callback_init (cb);
234         if (status != 0)
235         {
236             ERROR ("write_graphite plugin: wg_callback_init failed.");
237             pthread_mutex_unlock (&cb->send_lock);
238             return (-1);
239         }
240     }
241
242     status = wg_flush_nolock (timeout, cb);
243     pthread_mutex_unlock (&cb->send_lock);
244
245     return (status);
246 }
247
248 static int wg_format_values (char *ret, size_t ret_len,
249         int ds_num, const data_set_t *ds, const value_list_t *vl,
250         _Bool store_rates)
251 {
252     size_t offset = 0;
253     int status;
254     gauge_t *rates = NULL;
255
256     assert (0 == strcmp (ds->type, vl->type));
257
258     memset (ret, 0, ret_len);
259
260 #define BUFFER_ADD(...) do { \
261     status = ssnprintf (ret + offset, ret_len - offset, \
262             __VA_ARGS__); \
263     if (status < 1) \
264     { \
265         sfree (rates); \
266         return (-1); \
267     } \
268     else if (((size_t) status) >= (ret_len - offset)) \
269     { \
270         sfree (rates); \
271         return (-1); \
272     } \
273     else \
274     offset += ((size_t) status); \
275 } while (0)
276
277     if (ds->ds[ds_num].type == DS_TYPE_GAUGE)
278         BUFFER_ADD ("%f", vl->values[ds_num].gauge);
279     else if (store_rates)
280     {
281         if (rates == NULL)
282             rates = uc_get_rate (ds, vl);
283         if (rates == NULL)
284         {
285             WARNING ("format_values: "
286                     "uc_get_rate failed.");
287             return (-1);
288         }
289         BUFFER_ADD ("%g", rates[ds_num]);
290     }
291     else if (ds->ds[ds_num].type == DS_TYPE_COUNTER)
292         BUFFER_ADD ("%llu", vl->values[ds_num].counter);
293     else if (ds->ds[ds_num].type == DS_TYPE_DERIVE)
294         BUFFER_ADD ("%"PRIi64, vl->values[ds_num].derive);
295     else if (ds->ds[ds_num].type == DS_TYPE_ABSOLUTE)
296         BUFFER_ADD ("%"PRIu64, vl->values[ds_num].absolute);
297     else
298     {
299         ERROR ("format_values plugin: Unknown data source type: %i",
300                 ds->ds[ds_num].type);
301         sfree (rates);
302         return (-1);
303     }
304
305 #undef BUFFER_ADD
306
307     sfree (rates);
308     return (0);
309 }
310
311 static int normalize_hostname (char *dst, const char *src)
312 {
313     size_t i;
314
315     int reps = 0;
316
317     for (i = 0; i < strlen(src) ; i++)
318     {
319         if (src[i] == '.')
320         {
321             dst[i] = '_';
322             ++reps;
323         }
324         else
325             dst[i] = src[i];
326     }
327     dst[i] = '\0';
328
329     return reps;
330 }
331
332 static int wg_format_name (char *ret, int ret_len,
333         const char *hostname,
334         const char *plugin, const char *plugin_instance,
335         const char *type, const char *type_instance,
336         const char *prefix, const char *ds_name)
337 {
338     int  status;
339     char *n_hostname;
340
341     assert (plugin != NULL);
342     assert (type != NULL);
343
344     if ((n_hostname = malloc(strlen(hostname)+1)) == NULL)
345     {
346         ERROR ("Unable to allocate memory for normalized hostname buffer");
347         return (-1);
348     }
349
350     if (normalize_hostname(n_hostname, hostname) == -1)
351     {
352         ERROR ("Unable to normalize hostname");
353         return (-1);
354     }
355
356     if ((plugin_instance == NULL) || (plugin_instance[0] == '\0'))
357     {
358         if ((type_instance == NULL) || (type_instance[0] == '\0'))
359         {
360             if ((ds_name == NULL) || (ds_name[0] == '\0'))
361                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s",
362                         prefix, n_hostname, plugin, type);
363             else
364                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s",
365                         prefix, n_hostname, plugin, type, ds_name);
366         }
367         else
368         {
369             if ((ds_name == NULL) || (ds_name[0] == '\0'))
370                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s-%s",
371                         prefix, n_hostname, plugin, type,
372                         type_instance);
373             else
374                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s-%s.%s",
375                         prefix, n_hostname, plugin, type,
376                         type_instance, ds_name);
377         }
378     }
379     else
380     {
381         if ((type_instance == NULL) || (type_instance[0] == '\0'))
382         {
383             if ((ds_name == NULL) || (ds_name[0] == '\0'))
384                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s",
385                         prefix, n_hostname, plugin,
386                         plugin_instance, type);
387             else
388                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s.%s",
389                         prefix, n_hostname, plugin,
390                         plugin_instance, type, ds_name);
391         }
392         else
393         {
394             if ((ds_name == NULL) || (ds_name[0] == '\0'))
395                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s-%s",
396                         prefix, n_hostname, plugin,
397                         plugin_instance, type, type_instance);
398             else
399                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s-%s.%s",
400                         prefix, n_hostname, plugin,
401                         plugin_instance, type, type_instance, ds_name);
402         }
403     }
404
405     sfree(n_hostname);
406
407     if ((status < 1) || (status >= ret_len))
408         return (-1);
409     return (0);
410 }
411
412 static int wg_send_message (const char* key, const char* value,
413         cdtime_t time, struct wg_callback *cb)
414 {
415     int status;
416     size_t message_len;
417     char message[1024];
418
419     message_len = (size_t) ssnprintf (message, sizeof (message),
420             "%s %s %.0f\n",
421             key,
422             value,
423             CDTIME_T_TO_DOUBLE(time));
424     if (message_len >= sizeof (message)) {
425         ERROR ("write_graphite plugin: message buffer too small: "
426                 "Need %zu bytes.", message_len + 1);
427         return (-1);
428     }
429
430
431     pthread_mutex_lock (&cb->send_lock);
432
433     if (cb->sock_fd < 0)
434     {
435         status = wg_callback_init (cb);
436         if (status != 0)
437         {
438             ERROR ("write_graphite plugin: wg_callback_init failed.");
439             pthread_mutex_unlock (&cb->send_lock);
440             return (-1);
441         }
442     }
443
444     if (message_len >= cb->send_buf_free)
445     {
446         status = wg_flush_nolock (/* timeout = */ 0, cb);
447         if (status != 0)
448         {
449             pthread_mutex_unlock (&cb->send_lock);
450             return (status);
451         }
452     }
453     assert (message_len < cb->send_buf_free);
454
455     /* `message_len + 1' because `message_len' does not include the
456      * trailing null byte. Neither does `send_buffer_fill'. */
457     memcpy (cb->send_buf + cb->send_buf_fill,
458             message, message_len + 1);
459     cb->send_buf_fill += message_len;
460     cb->send_buf_free -= message_len;
461
462     DEBUG ("write_graphite plugin: <%s:%d> buf %zu/%zu (%g%%) \"%s\"",
463             cb->host,
464             cb->port,
465             cb->send_buf_fill, sizeof (cb->send_buf),
466             100.0 * ((double) cb->send_buf_fill) / ((double) sizeof (cb->send_buf)),
467             message);
468
469     /* Check if we have enough space for this message. */
470     pthread_mutex_unlock (&cb->send_lock);
471
472     return (0);
473 }
474
475 static int wg_write_messages (const data_set_t *ds, const value_list_t *vl,
476         struct wg_callback *cb)
477 {
478     char key[10*DATA_MAX_NAME_LEN];
479     char values[512];
480
481     int status, i;
482
483     if (0 != strcmp (ds->type, vl->type))
484     {
485         ERROR ("write_graphite plugin: DS type does not match "
486                 "value list type");
487         return -1;
488     }
489
490     if (ds->ds_num > 1)
491     {
492         for (i = 0; i < ds->ds_num; i++)
493         {
494             /* Copy the identifier to `key' and escape it. */
495             status = WG_FORMAT_NAME (key, sizeof (key), vl, cb->prefix, \
496                     ds->ds[i].name);
497             if (status != 0)
498             {
499                 ERROR ("write_graphite plugin: error with format_name");
500                 return (status);
501             }
502
503             escape_string (key, sizeof (key));
504             /* Convert the values to an ASCII representation and put that
505              * into `values'. */
506             status = wg_format_values (values, sizeof (values), i, ds, vl, 0);
507             if (status != 0)
508             {
509                 ERROR ("write_graphite plugin: error with "
510                         "wg_format_values");
511                 return (status);
512             }
513
514             /* Send the message to graphite */
515             status = wg_send_message (key, values, vl->time, cb);
516             if (status != 0)
517             {
518                 ERROR ("write_graphite plugin: error with "
519                         "wg_send_message");
520                 return (status);
521             }
522         }
523     }
524     else
525     {
526         /* Copy the identifier to `key' and escape it. */
527         status = WG_FORMAT_NAME (key, sizeof (key), vl, cb->prefix, NULL);
528         if (status != 0)
529         {
530             ERROR ("write_graphite plugin: error with format_name");
531             return (status);
532         }
533
534         escape_string (key, sizeof (key));
535         /* Convert the values to an ASCII representation and put that into
536          * `values'. */
537         status = wg_format_values (values, sizeof (values), 0, ds, vl, 0);
538         if (status != 0)
539         {
540             ERROR ("write_graphite plugin: error with "
541                     "wg_format_values");
542             return (status);
543         }
544
545         /* Send the message to graphite */
546         status = wg_send_message (key, values, vl->time, cb);
547         if (status != 0)
548         {
549             ERROR ("write_graphite plugin: error with "
550                     "wg_send_message");
551             return (status);
552         }
553     }
554
555     return (0);
556 }
557
558 static int wg_write (const data_set_t *ds, const value_list_t *vl,
559         user_data_t *user_data)
560 {
561     struct wg_callback *cb;
562     int status;
563
564     if (user_data == NULL)
565         return (-EINVAL);
566
567     cb = user_data->data;
568
569     status = wg_write_messages (ds, vl, cb);
570
571     return (status);
572 }
573
574 static int config_set_number (int *dest,
575         oconfig_item_t *ci)
576 {
577     if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
578     {
579         WARNING ("write_graphite plugin: The `%s' config option "
580                 "needs exactly one numeric argument.", ci->key);
581         return (-1);
582     }
583
584     *dest = ci->values[0].value.number;
585
586     return (0);
587 }
588
589 static int config_set_string (char **ret_string,
590         oconfig_item_t *ci)
591 {
592     char *string;
593
594     if ((ci->values_num != 1)
595             || (ci->values[0].type != OCONFIG_TYPE_STRING))
596     {
597         WARNING ("write_graphite plugin: The `%s' config option "
598                 "needs exactly one string argument.", ci->key);
599         return (-1);
600     }
601
602     string = strdup (ci->values[0].value.string);
603     if (string == NULL)
604     {
605         ERROR ("write_graphite plugin: strdup failed.");
606         return (-1);
607     }
608
609     if (*ret_string != NULL)
610         sfree (*ret_string);
611     *ret_string = string;
612
613     return (0);
614 }
615
616 static int wg_config_carbon (oconfig_item_t *ci)
617 {
618     struct wg_callback *cb;
619     user_data_t user_data;
620     int i;
621
622     cb = malloc (sizeof (*cb));
623     if (cb == NULL)
624     {
625         ERROR ("write_graphite plugin: malloc failed.");
626         return (-1);
627     }
628     memset (cb, 0, sizeof (*cb));
629     cb->sock_fd = -1;
630     cb->host = NULL;
631     cb->port = 2003;
632     cb->prefix = NULL;
633     cb->server = NULL;
634
635     pthread_mutex_init (&cb->send_lock, /* attr = */ NULL);
636
637     for (i = 0; i < ci->children_num; i++)
638     {
639         oconfig_item_t *child = ci->children + i;
640
641         if (strcasecmp ("Host", child->key) == 0)
642             config_set_string (&cb->host, child);
643         else if (strcasecmp ("Port", child->key) == 0)
644             config_set_number (&cb->port, child);
645         else if (strcasecmp ("Prefix", child->key) == 0)
646             config_set_string (&cb->prefix, child);
647         else
648         {
649             ERROR ("write_graphite plugin: Invalid configuration "
650                         "option: %s.", child->key);
651         }
652     }
653
654     DEBUG ("write_graphite: Registering write callback to carbon agent "
655             "%s:%d", cb->host, cb->port);
656
657     memset (&user_data, 0, sizeof (user_data));
658     user_data.data = cb;
659     user_data.free_func = NULL;
660     plugin_register_flush ("write_graphite", wg_flush, &user_data);
661
662     user_data.free_func = wg_callback_free;
663     plugin_register_write ("write_graphite", wg_write, &user_data);
664
665     return (0);
666 }
667
668 static int wg_config (oconfig_item_t *ci)
669 {
670     int i;
671
672     for (i = 0; i < ci->children_num; i++)
673     {
674         oconfig_item_t *child = ci->children + i;
675
676         if (strcasecmp ("Carbon", child->key) == 0)
677             wg_config_carbon (child);
678         else
679         {
680             ERROR ("write_graphite plugin: Invalid configuration "
681                     "option: %s.", child->key);
682         }
683     }
684
685     return (0);
686 }
687
688 void module_register (void)
689 {
690     plugin_register_complex_config ("write_graphite", wg_config);
691 }
692
693 /* vim: set sw=4 ts=4 sts=4 tw=78 et : */