write_redis: Replaced method for checking for a NULL value for the redis connection
[collectd.git] / src / write_redis.c
1 /**
2  * collectd - src/write_redis.c
3  * Copyright (C) 2010       Florian Forster
4  *
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:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
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.
22  *
23  * Authors:
24  *   Florian Forster <ff at octo.it>
25  **/
26
27 #include "collectd.h"
28 #include "plugin.h"
29 #include "common.h"
30 #include "configfile.h"
31
32 #include <pthread.h>
33 #include <sys/time.h>
34 #include <hiredis/hiredis.h>
35
36 struct wr_node_s
37 {
38   char name[DATA_MAX_NAME_LEN];
39
40   char *host;
41   int port;
42   struct timeval timeout;
43
44   redisContext *conn;
45   pthread_mutex_t lock;
46 };
47 typedef struct wr_node_s wr_node_t;
48
49 /*
50  * Functions
51  */
52 static int wr_write (const data_set_t *ds, /* {{{ */
53     const value_list_t *vl,
54     user_data_t *ud)
55 {
56   wr_node_t *node = ud->data;
57   char ident[512];
58   char key[512];
59   char value[512];
60   char time[24];
61   size_t value_size;
62   char *value_ptr;
63   int status;
64   redisReply   *rr;
65   int i;
66
67   status = FORMAT_VL (ident, sizeof (ident), vl);
68   if (status != 0)
69     return (status);
70   ssnprintf (key, sizeof (key), "collectd/%s", ident);
71   ssnprintf (time, sizeof (time), "%.9f", CDTIME_T_TO_DOUBLE(vl->time));
72
73   memset (value, 0, sizeof (value));
74   value_size = sizeof (value);
75   value_ptr = &value[0];
76
77 #define APPEND(...) do {                                             \
78   status = snprintf (value_ptr, value_size, __VA_ARGS__);            \
79   if (((size_t) status) > value_size)                                \
80   {                                                                  \
81     value_ptr += value_size;                                         \
82     value_size = 0;                                                  \
83   }                                                                  \
84   else                                                               \
85   {                                                                  \
86     value_ptr += status;                                             \
87     value_size -= status;                                            \
88   }                                                                  \
89 } while (0)
90
91   APPEND ("%s:", time);
92
93   for (i = 0; i < ds->ds_num; i++)
94   {
95     if (ds->ds[i].type == DS_TYPE_COUNTER)
96       APPEND ("%llu", vl->values[i].counter);
97     else if (ds->ds[i].type == DS_TYPE_GAUGE)
98       APPEND (GAUGE_FORMAT, vl->values[i].gauge);
99     else if (ds->ds[i].type == DS_TYPE_DERIVE)
100       APPEND ("%"PRIi64, vl->values[i].derive);
101     else if (ds->ds[i].type == DS_TYPE_ABSOLUTE)
102       APPEND ("%"PRIu64, vl->values[i].absolute);
103     else
104       assert (23 == 42);
105   }
106
107 #undef APPEND
108
109   pthread_mutex_lock (&node->lock);
110
111   if (node->conn == NULL)
112   {
113     node->conn = redisConnectWithTimeout ((char *)node->host, node->port, node->timeout);
114     if (node->conn == NULL)
115     {
116       ERROR ("write_redis plugin: Connecting to host \"%s\" (port %i) failed: Unkown reason",
117           (node->host != NULL) ? node->host : "localhost",
118           (node->port != 0) ? node->port : 6379);
119       pthread_mutex_unlock (&node->lock);
120       return (-1);
121     }
122     else if (node->conn->err)
123     {
124       ERROR ("write_redis plugin: Connecting to host \"%s\" (port %i) failed: %s",
125           (node->host != NULL) ? node->host : "localhost",
126           (node->port != 0) ? node->port : 6379,
127           node->conn->errstr);
128       pthread_mutex_unlock (&node->lock);
129       return (-1);
130     }
131   }
132
133   rr = redisCommand (node->conn, "ZADD %s %s %s", key, time, value);
134   if (rr==NULL)
135     WARNING("ZADD command error. key:%s message:%s", key, node->conn->errstr);
136
137   rr = redisCommand (node->conn, "SADD collectd/values %s", ident);
138   if (rr==NULL)
139     WARNING("SADD command error. ident:%s message:%s", ident, node->conn->errstr);
140
141   pthread_mutex_unlock (&node->lock);
142
143   return (0);
144 } /* }}} int wr_write */
145
146 static void wr_config_free (void *ptr) /* {{{ */
147 {
148   wr_node_t *node = ptr;
149
150   if (node == NULL)
151     return;
152
153   if (node->conn != NULL)
154   {
155     redisFree (node->conn);
156     node->conn = NULL;
157   }
158
159   sfree (node->host);
160   sfree (node);
161 } /* }}} void wr_config_free */
162
163 static int wr_config_node (oconfig_item_t *ci) /* {{{ */
164 {
165   wr_node_t *node;
166   int timeout;
167   int status;
168   int i;
169
170   node = malloc (sizeof (*node));
171   if (node == NULL)
172     return (ENOMEM);
173   memset (node, 0, sizeof (*node));
174   node->host = NULL;
175   node->port = 0;
176   node->timeout.tv_sec = 0;
177   node->timeout.tv_usec = 1000;
178   node->conn = NULL;
179   pthread_mutex_init (&node->lock, /* attr = */ NULL);
180
181   status = cf_util_get_string_buffer (ci, node->name, sizeof (node->name));
182   if (status != 0)
183   {
184     sfree (node);
185     return (status);
186   }
187
188   for (i = 0; i < ci->children_num; i++)
189   {
190     oconfig_item_t *child = ci->children + i;
191
192     if (strcasecmp ("Host", child->key) == 0)
193       status = cf_util_get_string (child, &node->host);
194     else if (strcasecmp ("Port", child->key) == 0)
195     {
196       status = cf_util_get_port_number (child);
197       if (status > 0)
198       {
199         node->port = status;
200         status = 0;
201       }
202     }
203     else if (strcasecmp ("Timeout", child->key) == 0) {
204       status = cf_util_get_int (child, &timeout);
205       if (status == 0) node->timeout.tv_usec = timeout;
206     }
207     else
208       WARNING ("write_redis plugin: Ignoring unknown config option \"%s\".",
209           child->key);
210
211     if (status != 0)
212       break;
213   } /* for (i = 0; i < ci->children_num; i++) */
214
215   if (status == 0)
216   {
217     char cb_name[DATA_MAX_NAME_LEN];
218     user_data_t ud;
219
220     ssnprintf (cb_name, sizeof (cb_name), "write_redis/%s", node->name);
221
222     ud.data = node;
223     ud.free_func = wr_config_free;
224
225     status = plugin_register_write (cb_name, wr_write, &ud);
226   }
227
228   if (status != 0)
229     wr_config_free (node);
230
231   return (status);
232 } /* }}} int wr_config_node */
233
234 static int wr_config (oconfig_item_t *ci) /* {{{ */
235 {
236   int i;
237
238   for (i = 0; i < ci->children_num; i++)
239   {
240     oconfig_item_t *child = ci->children + i;
241
242     if (strcasecmp ("Node", child->key) == 0)
243       wr_config_node (child);
244     else
245       WARNING ("write_redis plugin: Ignoring unknown "
246           "configuration option \"%s\" at top level.", child->key);
247   }
248
249   return (0);
250 } /* }}} int wr_config */
251
252 void module_register (void)
253 {
254   plugin_register_complex_config ("write_redis", wr_config);
255 }
256
257 /* vim: set sw=2 sts=2 tw=78 et fdm=marker : */