libcollectdclient: Propagate errors when signing / encrypting network packets.
[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 ("%g", 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.",
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   }
123
124   assert (node->conn != NULL);
125   rr = redisCommand (node->conn, "ZADD %s %s %s", key, time, value);
126   if (rr==NULL)
127     WARNING("ZADD command error. key:%s", key);
128
129   rr = redisCommand (node->conn, "SADD collectd/values %s", ident);
130   if (rr==NULL)
131     WARNING("SADD command error. ident:%s", ident);
132
133   pthread_mutex_unlock (&node->lock);
134
135   return (0);
136 } /* }}} int wr_write */
137
138 static void wr_config_free (void *ptr) /* {{{ */
139 {
140   wr_node_t *node = ptr;
141
142   if (node == NULL)
143     return;
144
145   if (node->conn != NULL)
146   {
147     redisFree (node->conn);
148     node->conn = NULL;
149   }
150
151   sfree (node->host);
152   sfree (node);
153 } /* }}} void wr_config_free */
154
155 static int wr_config_node (oconfig_item_t *ci) /* {{{ */
156 {
157   wr_node_t *node;
158   int timeout;
159   int status;
160   int i;
161
162   node = malloc (sizeof (*node));
163   if (node == NULL)
164     return (ENOMEM);
165   memset (node, 0, sizeof (*node));
166   node->host = NULL;
167   node->port = 0;
168   node->timeout.tv_sec = 0;
169   node->timeout.tv_usec = 1000;
170   node->conn = NULL;
171   pthread_mutex_init (&node->lock, /* attr = */ NULL);
172
173   status = cf_util_get_string_buffer (ci, node->name, sizeof (node->name));
174   if (status != 0)
175   {
176     sfree (node);
177     return (status);
178   }
179
180   for (i = 0; i < ci->children_num; i++)
181   {
182     oconfig_item_t *child = ci->children + i;
183
184     if (strcasecmp ("Host", child->key) == 0)
185       status = cf_util_get_string (child, &node->host);
186     else if (strcasecmp ("Port", child->key) == 0)
187     {
188       status = cf_util_get_port_number (child);
189       if (status > 0)
190       {
191         node->port = status;
192         status = 0;
193       }
194     }
195     else if (strcasecmp ("Timeout", child->key) == 0) {
196       status = cf_util_get_int (child, &timeout);
197       if (status == 0) node->timeout.tv_usec = timeout;
198     }
199     else
200       WARNING ("write_redis plugin: Ignoring unknown config option \"%s\".",
201           child->key);
202
203     if (status != 0)
204       break;
205   } /* for (i = 0; i < ci->children_num; i++) */
206
207   if (status == 0)
208   {
209     char cb_name[DATA_MAX_NAME_LEN];
210     user_data_t ud;
211
212     ssnprintf (cb_name, sizeof (cb_name), "write_redis/%s", node->name);
213
214     ud.data = node;
215     ud.free_func = wr_config_free;
216
217     status = plugin_register_write (cb_name, wr_write, &ud);
218   }
219
220   if (status != 0)
221     wr_config_free (node);
222
223   return (status);
224 } /* }}} int wr_config_node */
225
226 static int wr_config (oconfig_item_t *ci) /* {{{ */
227 {
228   int i;
229
230   for (i = 0; i < ci->children_num; i++)
231   {
232     oconfig_item_t *child = ci->children + i;
233
234     if (strcasecmp ("Node", child->key) == 0)
235       wr_config_node (child);
236     else
237       WARNING ("write_redis plugin: Ignoring unknown "
238           "configuration option \"%s\" at top level.", child->key);
239   }
240
241   return (0);
242 } /* }}} int wr_config */
243
244 void module_register (void)
245 {
246   plugin_register_complex_config ("write_redis", wr_config);
247 }
248
249 /* vim: set sw=2 sts=2 tw=78 et fdm=marker : */