Merge branch 'master' of github.com:jssjr/collectd-write_graphite
[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 mangle_dots (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 = 0;
340     char *n_ds_name = 0;
341
342     assert (plugin != NULL);
343     assert (type != NULL);
344
345     if ((n_hostname = malloc(strlen(hostname)+1)) == NULL)
346     {
347         ERROR ("Unable to allocate memory for normalized hostname buffer");
348         return (-1);
349     }
350
351     if (mangle_dots(n_hostname, hostname) == -1)
352     {
353         ERROR ("Unable to normalize hostname");
354         return (-1);
355     }
356
357     if (ds_name && ds_name[0] != '\0') {
358         if (mangle_dots(n_ds_name, ds_name) == -1)
359         {
360             ERROR ("Unable to normalize datasource name");
361             return (-1);
362         }
363     }
364
365     if ((plugin_instance == NULL) || (plugin_instance[0] == '\0'))
366     {
367         if ((type_instance == NULL) || (type_instance[0] == '\0'))
368         {
369             if ((ds_name == NULL) || (ds_name[0] == '\0'))
370                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s",
371                         prefix, n_hostname, plugin, type);
372             else
373                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s",
374                         prefix, n_hostname, plugin, type, ds_name);
375         }
376         else
377         {
378             if ((ds_name == NULL) || (ds_name[0] == '\0'))
379                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s-%s",
380                         prefix, n_hostname, plugin, type,
381                         type_instance);
382             else
383                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s-%s.%s",
384                         prefix, n_hostname, plugin, type,
385                         type_instance, ds_name);
386         }
387     }
388     else
389     {
390         if ((type_instance == NULL) || (type_instance[0] == '\0'))
391         {
392             if ((ds_name == NULL) || (ds_name[0] == '\0'))
393                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s",
394                         prefix, n_hostname, plugin,
395                         plugin_instance, type);
396             else
397                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s.%s",
398                         prefix, n_hostname, plugin,
399                         plugin_instance, type, ds_name);
400         }
401         else
402         {
403             if ((ds_name == NULL) || (ds_name[0] == '\0'))
404                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s-%s",
405                         prefix, n_hostname, plugin,
406                         plugin_instance, type, type_instance);
407             else
408                 status = ssnprintf (ret, ret_len, "%s.%s.%s.%s.%s-%s.%s",
409                         prefix, n_hostname, plugin,
410                         plugin_instance, type, type_instance, ds_name);
411         }
412     }
413
414     sfree(n_hostname);
415
416     if ((status < 1) || (status >= ret_len))
417         return (-1);
418     return (0);
419 }
420
421 static int wg_send_message (const char* key, const char* value,
422         cdtime_t time, struct wg_callback *cb)
423 {
424     int status;
425     size_t message_len;
426     char message[1024];
427
428     message_len = (size_t) ssnprintf (message, sizeof (message),
429             "%s %s %.0f\n",
430             key,
431             value,
432             CDTIME_T_TO_DOUBLE(time));
433     if (message_len >= sizeof (message)) {
434         ERROR ("write_graphite plugin: message buffer too small: "
435                 "Need %zu bytes.", message_len + 1);
436         return (-1);
437     }
438
439
440     pthread_mutex_lock (&cb->send_lock);
441
442     if (cb->sock_fd < 0)
443     {
444         status = wg_callback_init (cb);
445         if (status != 0)
446         {
447             ERROR ("write_graphite plugin: wg_callback_init failed.");
448             pthread_mutex_unlock (&cb->send_lock);
449             return (-1);
450         }
451     }
452
453     if (message_len >= cb->send_buf_free)
454     {
455         status = wg_flush_nolock (/* timeout = */ 0, cb);
456         if (status != 0)
457         {
458             pthread_mutex_unlock (&cb->send_lock);
459             return (status);
460         }
461     }
462     assert (message_len < cb->send_buf_free);
463
464     /* `message_len + 1' because `message_len' does not include the
465      * trailing null byte. Neither does `send_buffer_fill'. */
466     memcpy (cb->send_buf + cb->send_buf_fill,
467             message, message_len + 1);
468     cb->send_buf_fill += message_len;
469     cb->send_buf_free -= message_len;
470
471     DEBUG ("write_graphite plugin: <%s:%d> buf %zu/%zu (%g%%) \"%s\"",
472             cb->host,
473             cb->port,
474             cb->send_buf_fill, sizeof (cb->send_buf),
475             100.0 * ((double) cb->send_buf_fill) / ((double) sizeof (cb->send_buf)),
476             message);
477
478     /* Check if we have enough space for this message. */
479     pthread_mutex_unlock (&cb->send_lock);
480
481     return (0);
482 }
483
484 static int wg_write_messages (const data_set_t *ds, const value_list_t *vl,
485         struct wg_callback *cb)
486 {
487     char key[10*DATA_MAX_NAME_LEN];
488     char values[512];
489
490     int status, i;
491
492     if (0 != strcmp (ds->type, vl->type))
493     {
494         ERROR ("write_graphite plugin: DS type does not match "
495                 "value list type");
496         return -1;
497     }
498
499     if (ds->ds_num > 1)
500     {
501         for (i = 0; i < ds->ds_num; i++)
502         {
503             /* Copy the identifier to `key' and escape it. */
504             status = WG_FORMAT_NAME (key, sizeof (key), vl, cb->prefix, \
505                     ds->ds[i].name);
506             if (status != 0)
507             {
508                 ERROR ("write_graphite plugin: error with format_name");
509                 return (status);
510             }
511
512             escape_string (key, sizeof (key));
513             /* Convert the values to an ASCII representation and put that
514              * into `values'. */
515             status = wg_format_values (values, sizeof (values), i, ds, vl, 0);
516             if (status != 0)
517             {
518                 ERROR ("write_graphite plugin: error with "
519                         "wg_format_values");
520                 return (status);
521             }
522
523             /* Send the message to graphite */
524             status = wg_send_message (key, values, vl->time, cb);
525             if (status != 0)
526             {
527                 ERROR ("write_graphite plugin: error with "
528                         "wg_send_message");
529                 return (status);
530             }
531         }
532     }
533     else
534     {
535         /* Copy the identifier to `key' and escape it. */
536         status = WG_FORMAT_NAME (key, sizeof (key), vl, cb->prefix, NULL);
537         if (status != 0)
538         {
539             ERROR ("write_graphite plugin: error with format_name");
540             return (status);
541         }
542
543         escape_string (key, sizeof (key));
544         /* Convert the values to an ASCII representation and put that into
545          * `values'. */
546         status = wg_format_values (values, sizeof (values), 0, ds, vl, 0);
547         if (status != 0)
548         {
549             ERROR ("write_graphite plugin: error with "
550                     "wg_format_values");
551             return (status);
552         }
553
554         /* Send the message to graphite */
555         status = wg_send_message (key, values, vl->time, cb);
556         if (status != 0)
557         {
558             ERROR ("write_graphite plugin: error with "
559                     "wg_send_message");
560             return (status);
561         }
562     }
563
564     return (0);
565 }
566
567 static int wg_write (const data_set_t *ds, const value_list_t *vl,
568         user_data_t *user_data)
569 {
570     struct wg_callback *cb;
571     int status;
572
573     if (user_data == NULL)
574         return (-EINVAL);
575
576     cb = user_data->data;
577
578     status = wg_write_messages (ds, vl, cb);
579
580     return (status);
581 }
582
583 static int config_set_number (int *dest,
584         oconfig_item_t *ci)
585 {
586     if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
587     {
588         WARNING ("write_graphite plugin: The `%s' config option "
589                 "needs exactly one numeric argument.", ci->key);
590         return (-1);
591     }
592
593     *dest = ci->values[0].value.number;
594
595     return (0);
596 }
597
598 static int config_set_string (char **ret_string,
599         oconfig_item_t *ci)
600 {
601     char *string;
602
603     if ((ci->values_num != 1)
604             || (ci->values[0].type != OCONFIG_TYPE_STRING))
605     {
606         WARNING ("write_graphite plugin: The `%s' config option "
607                 "needs exactly one string argument.", ci->key);
608         return (-1);
609     }
610
611     string = strdup (ci->values[0].value.string);
612     if (string == NULL)
613     {
614         ERROR ("write_graphite plugin: strdup failed.");
615         return (-1);
616     }
617
618     if (*ret_string != NULL)
619         sfree (*ret_string);
620     *ret_string = string;
621
622     return (0);
623 }
624
625 static int wg_config_carbon (oconfig_item_t *ci)
626 {
627     struct wg_callback *cb;
628     user_data_t user_data;
629     int i;
630
631     cb = malloc (sizeof (*cb));
632     if (cb == NULL)
633     {
634         ERROR ("write_graphite plugin: malloc failed.");
635         return (-1);
636     }
637     memset (cb, 0, sizeof (*cb));
638     cb->sock_fd = -1;
639     cb->host = NULL;
640     cb->port = 2003;
641     cb->prefix = NULL;
642     cb->server = NULL;
643
644     pthread_mutex_init (&cb->send_lock, /* attr = */ NULL);
645
646     for (i = 0; i < ci->children_num; i++)
647     {
648         oconfig_item_t *child = ci->children + i;
649
650         if (strcasecmp ("Host", child->key) == 0)
651             config_set_string (&cb->host, child);
652         else if (strcasecmp ("Port", child->key) == 0)
653             config_set_number (&cb->port, child);
654         else if (strcasecmp ("Prefix", child->key) == 0)
655             config_set_string (&cb->prefix, child);
656         else
657         {
658             ERROR ("write_graphite plugin: Invalid configuration "
659                         "option: %s.", child->key);
660         }
661     }
662
663     DEBUG ("write_graphite: Registering write callback to carbon agent "
664             "%s:%d", cb->host, cb->port);
665
666     memset (&user_data, 0, sizeof (user_data));
667     user_data.data = cb;
668     user_data.free_func = NULL;
669     plugin_register_flush ("write_graphite", wg_flush, &user_data);
670
671     user_data.free_func = wg_callback_free;
672     plugin_register_write ("write_graphite", wg_write, &user_data);
673
674     return (0);
675 }
676
677 static int wg_config (oconfig_item_t *ci)
678 {
679     int i;
680
681     for (i = 0; i < ci->children_num; i++)
682     {
683         oconfig_item_t *child = ci->children + i;
684
685         if (strcasecmp ("Carbon", child->key) == 0)
686             wg_config_carbon (child);
687         else
688         {
689             ERROR ("write_graphite plugin: Invalid configuration "
690                     "option: %s.", child->key);
691         }
692     }
693
694     return (0);
695 }
696
697 void module_register (void)
698 {
699     plugin_register_complex_config ("write_graphite", wg_config);
700 }
701
702 /* vim: set sw=4 ts=4 sts=4 tw=78 et : */