99c6f4d80a91a669ee0ac86f0bfe0620de6bb13f
[collectd.git] / src / write_graphite.c
1 /**
2  * collectd - src/write_graphite.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-2013  Florian octo Forster
8  *
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  * 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  *
29  * Based on the write_http plugin.
30  **/
31
32  /* write_graphite plugin configuation example
33   *
34   * <Plugin write_graphite>
35   *   <Carbon>
36   *     Host "localhost"
37   *     Port "2003"
38   *     Prefix "collectd"
39   *   </Carbon>
40   * </Plugin>
41   */
42
43 #include "collectd.h"
44 #include "common.h"
45 #include "plugin.h"
46 #include "configfile.h"
47
48 #include "utils_cache.h"
49 #include "utils_complain.h"
50 #include "utils_parse_option.h"
51 #include "utils_format_graphite.h"
52
53 /* Folks without pthread will need to disable this plugin. */
54 #include <pthread.h>
55
56 #include <sys/socket.h>
57 #include <netdb.h>
58
59 #ifndef WG_DEFAULT_NODE
60 # define WG_DEFAULT_NODE "localhost"
61 #endif
62
63 #ifndef WG_DEFAULT_SERVICE
64 # define WG_DEFAULT_SERVICE "2003"
65 #endif
66
67 #ifndef WG_DEFAULT_ESCAPE
68 # define WG_DEFAULT_ESCAPE '_'
69 #endif
70
71 /* Ethernet - (IPv6 + TCP) = 1500 - (40 + 32) = 1428 */
72 #ifndef WG_SEND_BUF_SIZE
73 # define WG_SEND_BUF_SIZE 1428
74 #endif
75
76 /*
77  * Private variables
78  */
79 struct wg_callback
80 {
81     int      sock_fd;
82
83     char    *name;
84
85     char    *node;
86     char    *service;
87     char    *prefix;
88     char    *postfix;
89     char     escape_char;
90
91     unsigned int format_flags;
92
93     char     send_buf[WG_SEND_BUF_SIZE];
94     size_t   send_buf_free;
95     size_t   send_buf_fill;
96     cdtime_t send_buf_init_time;
97
98     pthread_mutex_t send_lock;
99     c_complain_t init_complaint;
100 };
101
102
103 /*
104  * Functions
105  */
106 static void wg_reset_buffer (struct wg_callback *cb)
107 {
108     memset (cb->send_buf, 0, sizeof (cb->send_buf));
109     cb->send_buf_free = sizeof (cb->send_buf);
110     cb->send_buf_fill = 0;
111     cb->send_buf_init_time = cdtime ();
112 }
113
114 static int wg_send_buffer (struct wg_callback *cb)
115 {
116     ssize_t status = 0;
117
118     status = swrite (cb->sock_fd, cb->send_buf, strlen (cb->send_buf));
119     if (status < 0)
120     {
121         char errbuf[1024];
122         ERROR ("write_graphite plugin: send failed with status %zi (%s)",
123                 status, sstrerror (errno, errbuf, sizeof (errbuf)));
124
125
126         close (cb->sock_fd);
127         cb->sock_fd = -1;
128
129         return (-1);
130     }
131
132     return (0);
133 }
134
135 /* NOTE: You must hold cb->send_lock when calling this function! */
136 static int wg_flush_nolock (cdtime_t timeout, struct wg_callback *cb)
137 {
138     int status;
139
140     DEBUG ("write_graphite plugin: wg_flush_nolock: timeout = %.3f; "
141             "send_buf_fill = %zu;",
142             (double)timeout,
143             cb->send_buf_fill);
144
145     /* timeout == 0  => flush unconditionally */
146     if (timeout > 0)
147     {
148         cdtime_t now;
149
150         now = cdtime ();
151         if ((cb->send_buf_init_time + timeout) > now)
152             return (0);
153     }
154
155     if (cb->send_buf_fill <= 0)
156     {
157         cb->send_buf_init_time = cdtime ();
158         return (0);
159     }
160
161     status = wg_send_buffer (cb);
162     wg_reset_buffer (cb);
163
164     return (status);
165 }
166
167 static int wg_callback_init (struct wg_callback *cb)
168 {
169     struct addrinfo ai_hints;
170     struct addrinfo *ai_list;
171     struct addrinfo *ai_ptr;
172     int status;
173
174     const char *node = cb->node ? cb->node : WG_DEFAULT_NODE;
175     const char *service = cb->service ? cb->service : WG_DEFAULT_SERVICE;
176
177     if (cb->sock_fd > 0)
178         return (0);
179
180     memset (&ai_hints, 0, sizeof (ai_hints));
181 #ifdef AI_ADDRCONFIG
182     ai_hints.ai_flags |= AI_ADDRCONFIG;
183 #endif
184     ai_hints.ai_family = AF_UNSPEC;
185     ai_hints.ai_socktype = SOCK_STREAM;
186
187     ai_list = NULL;
188
189     status = getaddrinfo (node, service, &ai_hints, &ai_list);
190     if (status != 0)
191     {
192         ERROR ("write_graphite plugin: getaddrinfo (%s, %s) failed: %s",
193                 node, service, gai_strerror (status));
194         return (-1);
195     }
196
197     assert (ai_list != NULL);
198     for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
199     {
200         cb->sock_fd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype,
201                 ai_ptr->ai_protocol);
202         if (cb->sock_fd < 0)
203             continue;
204
205         status = connect (cb->sock_fd, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
206         if (status != 0)
207         {
208             close (cb->sock_fd);
209             cb->sock_fd = -1;
210             continue;
211         }
212
213         break;
214     }
215
216     freeaddrinfo (ai_list);
217
218     if (cb->sock_fd < 0)
219     {
220         char errbuf[1024];
221         c_complain (LOG_ERR, &cb->init_complaint,
222                 "write_graphite plugin: Connecting to %s:%s failed. "
223                 "The last error was: %s", node, service,
224                 sstrerror (errno, errbuf, sizeof (errbuf)));
225         return (-1);
226     }
227     else
228     {
229         c_release (LOG_INFO, &cb->init_complaint,
230                 "write_graphite plugin: Successfully connected to %s:%s.",
231                 node, service);
232     }
233
234     wg_reset_buffer (cb);
235
236     return (0);
237 }
238
239 static void wg_callback_free (void *data)
240 {
241     struct wg_callback *cb;
242
243     if (data == NULL)
244         return;
245
246     cb = data;
247
248     pthread_mutex_lock (&cb->send_lock);
249
250     wg_flush_nolock (/* timeout = */ 0, cb);
251
252     if (cb->sock_fd >= 0)
253     {
254         close (cb->sock_fd);
255         cb->sock_fd = -1;
256     }
257
258     sfree(cb->name);
259     sfree(cb->node);
260     sfree(cb->service);
261     sfree(cb->prefix);
262     sfree(cb->postfix);
263
264     pthread_mutex_destroy (&cb->send_lock);
265
266     sfree(cb);
267 }
268
269 static int wg_flush (cdtime_t timeout,
270         const char *identifier __attribute__((unused)),
271         user_data_t *user_data)
272 {
273     struct wg_callback *cb;
274     int status;
275
276     if (user_data == NULL)
277         return (-EINVAL);
278
279     cb = user_data->data;
280
281     pthread_mutex_lock (&cb->send_lock);
282
283     if (cb->sock_fd < 0)
284     {
285         status = wg_callback_init (cb);
286         if (status != 0)
287         {
288             /* An error message has already been printed. */
289             pthread_mutex_unlock (&cb->send_lock);
290             return (-1);
291         }
292     }
293
294     status = wg_flush_nolock (timeout, cb);
295     pthread_mutex_unlock (&cb->send_lock);
296
297     return (status);
298 }
299
300 static int wg_send_message (char const *message, struct wg_callback *cb)
301 {
302     int status;
303     size_t message_len;
304
305     message_len = strlen (message);
306
307     pthread_mutex_lock (&cb->send_lock);
308
309     if (cb->sock_fd < 0)
310     {
311         status = wg_callback_init (cb);
312         if (status != 0)
313         {
314             /* An error message has already been printed. */
315             pthread_mutex_unlock (&cb->send_lock);
316             return (-1);
317         }
318     }
319
320     if (message_len >= cb->send_buf_free)
321     {
322         status = wg_flush_nolock (/* timeout = */ 0, cb);
323         if (status != 0)
324         {
325             pthread_mutex_unlock (&cb->send_lock);
326             return (status);
327         }
328     }
329
330     /* Assert that we have enough space for this message. */
331     assert (message_len < cb->send_buf_free);
332
333     /* `message_len + 1' because `message_len' does not include the
334      * trailing null byte. Neither does `send_buffer_fill'. */
335     memcpy (cb->send_buf + cb->send_buf_fill,
336             message, message_len + 1);
337     cb->send_buf_fill += message_len;
338     cb->send_buf_free -= message_len;
339
340     DEBUG ("write_graphite plugin: [%s]:%s buf %zu/%zu (%.1f %%) \"%s\"",
341             cb->node,
342             cb->service,
343             cb->send_buf_fill, sizeof (cb->send_buf),
344             100.0 * ((double) cb->send_buf_fill) / ((double) sizeof (cb->send_buf)),
345             message);
346
347     pthread_mutex_unlock (&cb->send_lock);
348
349     return (0);
350 }
351
352 static int wg_write_messages (const data_set_t *ds, const value_list_t *vl,
353         struct wg_callback *cb)
354 {
355     char buffer[WG_SEND_BUF_SIZE];
356     int status;
357
358     if (0 != strcmp (ds->type, vl->type))
359     {
360         ERROR ("write_graphite plugin: DS type does not match "
361                 "value list type");
362         return -1;
363     }
364
365     memset (buffer, 0, sizeof (buffer));
366     status = format_graphite (buffer, sizeof (buffer), ds, vl,
367             cb->prefix, cb->postfix, cb->escape_char, cb->format_flags);
368     if (status != 0) /* error message has been printed already. */
369         return (status);
370
371     /* Send the message to graphite */
372     status = wg_send_message (buffer, cb);
373     if (status != 0) /* error message has been printed already. */
374         return (status);
375
376     return (0);
377 } /* int wg_write_messages */
378
379 static int wg_write (const data_set_t *ds, const value_list_t *vl,
380         user_data_t *user_data)
381 {
382     struct wg_callback *cb;
383     int status;
384
385     if (user_data == NULL)
386         return (EINVAL);
387
388     cb = user_data->data;
389
390     status = wg_write_messages (ds, vl, cb);
391
392     return (status);
393 }
394
395 static int config_set_char (char *dest,
396         oconfig_item_t *ci)
397 {
398     char buffer[4];
399     int status;
400
401     memset (buffer, 0, sizeof (buffer));
402
403     status = cf_util_get_string_buffer (ci, buffer, sizeof (buffer));
404     if (status != 0)
405         return (status);
406
407     if (buffer[0] == 0)
408     {
409         ERROR ("write_graphite plugin: Cannot use an empty string for the "
410                 "\"EscapeCharacter\" option.");
411         return (-1);
412     }
413
414     if (buffer[1] != 0)
415     {
416         WARNING ("write_graphite plugin: Only the first character of the "
417                 "\"EscapeCharacter\" option ('%c') will be used.",
418                 (int) buffer[0]);
419     }
420
421     *dest = buffer[0];
422
423     return (0);
424 }
425
426 static int wg_config_node (oconfig_item_t *ci)
427 {
428     struct wg_callback *cb;
429     user_data_t user_data;
430     char callback_name[DATA_MAX_NAME_LEN];
431     int i;
432
433     cb = malloc (sizeof (*cb));
434     if (cb == NULL)
435     {
436         ERROR ("write_graphite plugin: malloc failed.");
437         return (-1);
438     }
439     memset (cb, 0, sizeof (*cb));
440     cb->sock_fd = -1;
441     cb->name = NULL;
442     cb->node = NULL;
443     cb->service = NULL;
444     cb->prefix = NULL;
445     cb->postfix = NULL;
446     cb->escape_char = WG_DEFAULT_ESCAPE;
447     cb->format_flags = GRAPHITE_STORE_RATES;
448
449     /* FIXME: Legacy configuration syntax. */
450     if (strcasecmp ("Carbon", ci->key) != 0)
451     {
452         int status = cf_util_get_string (ci, &cb->name);
453         if (status != 0)
454         {
455             wg_callback_free (cb);
456             return (status);
457         }
458     }
459
460     pthread_mutex_init (&cb->send_lock, /* attr = */ NULL);
461     C_COMPLAIN_INIT (&cb->init_complaint);
462
463     for (i = 0; i < ci->children_num; i++)
464     {
465         oconfig_item_t *child = ci->children + i;
466
467         if (strcasecmp ("Host", child->key) == 0)
468             cf_util_get_string (child, &cb->node);
469         else if (strcasecmp ("Port", child->key) == 0)
470             cf_util_get_service (child, &cb->service);
471         else if (strcasecmp ("Prefix", child->key) == 0)
472             cf_util_get_string (child, &cb->prefix);
473         else if (strcasecmp ("Postfix", child->key) == 0)
474             cf_util_get_string (child, &cb->postfix);
475         else if (strcasecmp ("StoreRates", child->key) == 0)
476             cf_util_get_flag (child, &cb->format_flags,
477                     GRAPHITE_STORE_RATES);
478         else if (strcasecmp ("SeparateInstances", child->key) == 0)
479             cf_util_get_flag (child, &cb->format_flags,
480                     GRAPHITE_SEPARATE_INSTANCES);
481         else if (strcasecmp ("AlwaysAppendDS", child->key) == 0)
482             cf_util_get_flag (child, &cb->format_flags,
483                     GRAPHITE_ALWAYS_APPEND_DS);
484         else if (strcasecmp ("EscapeCharacter", child->key) == 0)
485             config_set_char (&cb->escape_char, child);
486         else
487         {
488             ERROR ("write_graphite plugin: Invalid configuration "
489                         "option: %s.", child->key);
490         }
491     }
492
493     /* FIXME: Legacy configuration syntax. */
494     if (cb->name == NULL)
495         ssnprintf (callback_name, sizeof (callback_name), "write_graphite/%s/%s",
496                 cb->node != NULL ? cb->node : WG_DEFAULT_NODE,
497                 cb->service != NULL ? cb->service : WG_DEFAULT_SERVICE);
498     else
499         ssnprintf (callback_name, sizeof (callback_name), "write_graphite/%s",
500                 cb->name);
501
502     memset (&user_data, 0, sizeof (user_data));
503     user_data.data = cb;
504     user_data.free_func = wg_callback_free;
505     plugin_register_write (callback_name, wg_write, &user_data);
506
507     user_data.free_func = NULL;
508     plugin_register_flush (callback_name, wg_flush, &user_data);
509
510     return (0);
511 }
512
513 static int wg_config (oconfig_item_t *ci)
514 {
515     int i;
516
517     for (i = 0; i < ci->children_num; i++)
518     {
519         oconfig_item_t *child = ci->children + i;
520
521         if (strcasecmp ("Node", child->key) == 0)
522             wg_config_node (child);
523         /* FIXME: Remove this legacy mode in version 6. */
524         else if (strcasecmp ("Carbon", child->key) == 0)
525             wg_config_node (child);
526         else
527         {
528             ERROR ("write_graphite plugin: Invalid configuration "
529                     "option: %s.", child->key);
530         }
531     }
532
533     return (0);
534 }
535
536 void module_register (void)
537 {
538     plugin_register_complex_config ("write_graphite", wg_config);
539 }
540
541 /* vim: set sw=4 ts=4 sts=4 tw=78 et : */