-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
write_redis.c
276 lines (238 loc) · 8.23 KB
/
write_redis.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/**
* collectd - src/write_redis.c
* Copyright (C) 2010-2015 Florian Forster
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* Authors:
* Florian Forster <ff at octo.it>
**/
#include "collectd.h"
#include "plugin.h"
#include "utils/common/common.h"
#include <hiredis/hiredis.h>
#include <sys/time.h>
#ifndef REDIS_DEFAULT_PREFIX
#define REDIS_DEFAULT_PREFIX "collectd/"
#endif
struct wr_node_s {
char name[DATA_MAX_NAME_LEN];
char *host;
int port;
struct timeval timeout;
char *prefix;
int database;
int max_set_size;
int max_set_duration;
bool store_rates;
redisContext *conn;
pthread_mutex_t lock;
};
typedef struct wr_node_s wr_node_t;
/*
* Functions
*/
static int wr_write(const data_set_t *ds, /* {{{ */
const value_list_t *vl, user_data_t *ud) {
wr_node_t *node = ud->data;
char ident[512];
char key[512];
char value[512] = {0};
char time[24];
size_t value_size;
char *value_ptr;
int status;
redisReply *rr;
status = FORMAT_VL(ident, sizeof(ident), vl);
if (status != 0)
return status;
ssnprintf(key, sizeof(key), "%s%s",
(node->prefix != NULL) ? node->prefix : REDIS_DEFAULT_PREFIX,
ident);
ssnprintf(time, sizeof(time), "%.9f", CDTIME_T_TO_DOUBLE(vl->time));
value_size = sizeof(value);
value_ptr = &value[0];
status = format_values(value_ptr, value_size, ds, vl, node->store_rates);
if (status != 0)
return status;
pthread_mutex_lock(&node->lock);
if (node->conn == NULL) {
node->conn =
redisConnectWithTimeout((char *)node->host, node->port, node->timeout);
if (node->conn == NULL) {
ERROR("write_redis plugin: Connecting to host \"%s\" (port %i) failed: "
"Unknown reason",
(node->host != NULL) ? node->host : "localhost",
(node->port != 0) ? node->port : 6379);
pthread_mutex_unlock(&node->lock);
return -1;
} else if (node->conn->err) {
ERROR(
"write_redis plugin: Connecting to host \"%s\" (port %i) failed: %s",
(node->host != NULL) ? node->host : "localhost",
(node->port != 0) ? node->port : 6379, node->conn->errstr);
pthread_mutex_unlock(&node->lock);
return -1;
}
rr = redisCommand(node->conn, "SELECT %d", node->database);
if (rr == NULL)
WARNING("SELECT command error. database:%d message:%s", node->database,
node->conn->errstr);
else
freeReplyObject(rr);
}
rr = redisCommand(node->conn, "ZADD %s %s %s", key, time, value);
if (rr == NULL)
WARNING("ZADD command error. key:%s message:%s", key, node->conn->errstr);
else
freeReplyObject(rr);
if (node->max_set_size >= 0) {
rr = redisCommand(node->conn, "ZREMRANGEBYRANK %s %d %d", key, 0,
(-1 * node->max_set_size) - 1);
if (rr == NULL)
WARNING("ZREMRANGEBYRANK command error. key:%s message:%s", key,
node->conn->errstr);
else
freeReplyObject(rr);
}
if (node->max_set_duration > 0) {
/*
* remove element, scored less than 'current-max_set_duration'
* '(...' indicates 'less than' in redis CLI.
*/
rr = redisCommand(node->conn, "ZREMRANGEBYSCORE %s -1 (%.9f", key,
(CDTIME_T_TO_DOUBLE(vl->time) - node->max_set_duration));
if (rr == NULL)
WARNING("ZREMRANGEBYSCORE command error. key:%s message:%s", key,
node->conn->errstr);
else
freeReplyObject(rr);
}
/* TODO(octo): This is more overhead than necessary. Use the cache and
* metadata to determine if it is a new metric and call SADD only once for
* each metric. */
rr = redisCommand(
node->conn, "SADD %svalues %s",
(node->prefix != NULL) ? node->prefix : REDIS_DEFAULT_PREFIX, ident);
if (rr == NULL)
WARNING("SADD command error. ident:%s message:%s", ident,
node->conn->errstr);
else
freeReplyObject(rr);
pthread_mutex_unlock(&node->lock);
return 0;
} /* }}} int wr_write */
static void wr_config_free(void *ptr) /* {{{ */
{
wr_node_t *node = ptr;
if (node == NULL)
return;
if (node->conn != NULL) {
redisFree(node->conn);
node->conn = NULL;
}
sfree(node->host);
sfree(node);
} /* }}} void wr_config_free */
static int wr_config_node(oconfig_item_t *ci) /* {{{ */
{
wr_node_t *node;
int timeout;
int status;
node = calloc(1, sizeof(*node));
if (node == NULL)
return ENOMEM;
node->host = NULL;
node->port = 0;
node->timeout.tv_sec = 1;
node->timeout.tv_usec = 0;
node->conn = NULL;
node->prefix = NULL;
node->database = 0;
node->max_set_size = -1;
node->max_set_duration = -1;
node->store_rates = true;
pthread_mutex_init(&node->lock, /* attr = */ NULL);
status = cf_util_get_string_buffer(ci, node->name, sizeof(node->name));
if (status != 0) {
sfree(node);
return status;
}
for (int i = 0; i < ci->children_num; i++) {
oconfig_item_t *child = ci->children + i;
if (strcasecmp("Host", child->key) == 0)
status = cf_util_get_string(child, &node->host);
else if (strcasecmp("Port", child->key) == 0) {
status = cf_util_get_port_number(child);
if (status > 0) {
node->port = status;
status = 0;
}
} else if (strcasecmp("Timeout", child->key) == 0) {
status = cf_util_get_int(child, &timeout);
if (status == 0) {
node->timeout.tv_usec = timeout * 1000;
node->timeout.tv_sec = node->timeout.tv_usec / 1000000L;
node->timeout.tv_usec %= 1000000L;
}
} else if (strcasecmp("Prefix", child->key) == 0) {
status = cf_util_get_string(child, &node->prefix);
} else if (strcasecmp("Database", child->key) == 0) {
status = cf_util_get_int(child, &node->database);
} else if (strcasecmp("MaxSetSize", child->key) == 0) {
status = cf_util_get_int(child, &node->max_set_size);
} else if (strcasecmp("MaxSetDuration", child->key) == 0) {
status = cf_util_get_int(child, &node->max_set_duration);
} else if (strcasecmp("StoreRates", child->key) == 0) {
status = cf_util_get_boolean(child, &node->store_rates);
} else
WARNING("write_redis plugin: Ignoring unknown config option \"%s\".",
child->key);
if (status != 0)
break;
} /* for (i = 0; i < ci->children_num; i++) */
if (status == 0) {
char cb_name[sizeof("write_redis/") + DATA_MAX_NAME_LEN];
ssnprintf(cb_name, sizeof(cb_name), "write_redis/%s", node->name);
status = plugin_register_write(cb_name, wr_write,
&(user_data_t){
.data = node,
.free_func = wr_config_free,
});
}
if (status != 0)
wr_config_free(node);
return status;
} /* }}} int wr_config_node */
static int wr_config(oconfig_item_t *ci) /* {{{ */
{
for (int i = 0; i < ci->children_num; i++) {
oconfig_item_t *child = ci->children + i;
if (strcasecmp("Node", child->key) == 0)
wr_config_node(child);
else
WARNING("write_redis plugin: Ignoring unknown "
"configuration option \"%s\" at top level.",
child->key);
}
return 0;
} /* }}} int wr_config */
void module_register(void) {
plugin_register_complex_config("write_redis", wr_config);
}