2 * collectd - src/rrdcached.c
3 * Copyright (C) 2008-2013 Florian octo Forster
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.
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.
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
19 * Florian octo Forster <octo at collectd.org>
25 #include "utils_rrdcreate.h"
29 #include <rrd_client.h>
34 static char *datadir = NULL;
35 static char *daemon_address = NULL;
36 static _Bool config_create_files = 1;
37 static _Bool config_collect_stats = 1;
38 static rrdcreate_config_t rrdcreate_config =
45 /* timespans = */ NULL,
46 /* timespans_num = */ 0,
48 /* consolidation_functions = */ NULL,
49 /* consolidation_functions_num = */ 0,
57 static int rc_write (const data_set_t *ds, const value_list_t *vl,
58 user_data_t __attribute__((unused)) *user_data);
59 static int rc_flush (__attribute__((unused)) cdtime_t timeout,
60 const char *identifier, __attribute__((unused)) user_data_t *ud);
62 static int value_list_to_string (char *buffer, int buffer_len,
63 const data_set_t *ds, const value_list_t *vl)
70 assert (0 == strcmp (ds->type, vl->type));
72 memset (buffer, '\0', buffer_len);
74 t = CDTIME_T_TO_TIME_T (vl->time);
75 status = ssnprintf (buffer, buffer_len, "%lu", (unsigned long) t);
76 if ((status < 1) || (status >= buffer_len))
80 for (i = 0; i < ds->ds_num; i++)
82 if ((ds->ds[i].type != DS_TYPE_COUNTER)
83 && (ds->ds[i].type != DS_TYPE_GAUGE)
84 && (ds->ds[i].type != DS_TYPE_DERIVE)
85 && (ds->ds[i].type != DS_TYPE_ABSOLUTE))
88 if (ds->ds[i].type == DS_TYPE_COUNTER)
90 status = ssnprintf (buffer + offset, buffer_len - offset,
91 ":%llu", vl->values[i].counter);
93 else if (ds->ds[i].type == DS_TYPE_GAUGE)
95 status = ssnprintf (buffer + offset, buffer_len - offset,
96 ":%f", vl->values[i].gauge);
98 else if (ds->ds[i].type == DS_TYPE_DERIVE) {
99 status = ssnprintf (buffer + offset, buffer_len - offset,
100 ":%"PRIi64, vl->values[i].derive);
102 else /* if (ds->ds[i].type == DS_TYPE_ABSOLUTE) */ {
103 status = ssnprintf (buffer + offset, buffer_len - offset,
104 ":%"PRIu64, vl->values[i].absolute);
108 if ((status < 1) || (status >= (buffer_len - offset)))
112 } /* for ds->ds_num */
115 } /* int value_list_to_string */
117 static int value_list_to_filename (char *buffer, size_t buffer_size,
118 value_list_t const *vl)
120 char const suffix[] = ".rrd";
126 size_t datadir_len = strlen (datadir) + 1;
128 if (datadir_len >= buffer_size)
131 sstrncpy (buffer, datadir, buffer_size);
132 buffer[datadir_len - 1] = '/';
133 buffer[datadir_len] = 0;
135 buffer += datadir_len;
136 buffer_size -= datadir_len;
139 status = FORMAT_VL (buffer, buffer_size, vl);
143 len = strlen (buffer);
144 assert (len < buffer_size);
148 if (buffer_size <= sizeof (suffix))
151 memcpy (buffer, suffix, sizeof (suffix));
153 } /* int value_list_to_filename */
155 static int rc_config_get_int_positive (oconfig_item_t const *ci, int *ret)
160 status = cf_util_get_int (ci, &tmp);
168 } /* int rc_config_get_int_positive */
170 static int rc_config_get_xff (oconfig_item_t const *ci, double *ret)
174 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
176 ERROR ("rrdcached plugin: The \"%s\" needs exactly one numeric argument "
177 "in the range [0.0, 1.0)", ci->key);
181 value = ci->values[0].value.number;
182 if ((value >= 0.0) && (value < 1.0))
188 ERROR ("rrdcached plugin: The \"%s\" needs exactly one numeric argument "
189 "in the range [0.0, 1.0)", ci->key);
191 } /* int rc_config_get_xff */
193 static int rc_config_add_timespan (int timespan)
200 tmp = realloc (rrdcreate_config.timespans,
201 sizeof (*rrdcreate_config.timespans)
202 * (rrdcreate_config.timespans_num + 1));
205 rrdcreate_config.timespans = tmp;
207 rrdcreate_config.timespans[rrdcreate_config.timespans_num] = timespan;
208 rrdcreate_config.timespans_num++;
211 } /* int rc_config_add_timespan */
213 static int rc_config (oconfig_item_t *ci)
217 for (i = 0; i < ci->children_num; i++)
219 oconfig_item_t const *child = ci->children + i;
220 const char *key = child->key;
223 if (strcasecmp ("DataDir", key) == 0)
225 status = cf_util_get_string (child, &datadir);
228 int len = strlen (datadir);
230 while ((len > 0) && (datadir[len - 1] == '/'))
240 else if (strcasecmp ("DaemonAddress", key) == 0)
241 status = cf_util_get_string (child, &daemon_address);
242 else if (strcasecmp ("CreateFiles", key) == 0)
243 status = cf_util_get_boolean (child, &config_create_files);
244 else if (strcasecmp ("CreateFilesAsync", key) == 0)
245 status = cf_util_get_boolean (child, &rrdcreate_config.async);
246 else if (strcasecmp ("CollectStatistics", key) == 0)
247 status = cf_util_get_boolean (child, &config_collect_stats);
248 else if (strcasecmp ("StepSize", key) == 0)
252 status = rc_config_get_int_positive (child, &tmp);
254 rrdcreate_config.stepsize = (unsigned long) tmp;
256 else if (strcasecmp ("HeartBeat", key) == 0)
257 status = rc_config_get_int_positive (child, &rrdcreate_config.heartbeat);
258 else if (strcasecmp ("RRARows", key) == 0)
259 status = rc_config_get_int_positive (child, &rrdcreate_config.rrarows);
260 else if (strcasecmp ("RRATimespan", key) == 0)
263 status = rc_config_get_int_positive (child, &tmp);
265 status = rc_config_add_timespan (tmp);
267 else if (strcasecmp ("XFF", key) == 0)
268 status = rc_config_get_xff (child, &rrdcreate_config.xff);
271 WARNING ("rrdcached plugin: Ignoring invalid option %s.", key);
276 WARNING ("rrdcached plugin: Handling the \"%s\" option failed.", key);
279 if (daemon_address != NULL)
281 plugin_register_write ("rrdcached", rc_write, /* user_data = */ NULL);
282 plugin_register_flush ("rrdcached", rc_flush, /* user_data = */ NULL);
285 } /* int rc_config */
287 static int rc_read (void)
294 value_list_t vl = VALUE_LIST_INIT;
296 if (daemon_address == NULL)
299 if (!config_collect_stats)
305 if ((strncmp ("unix:", daemon_address, strlen ("unix:")) == 0)
306 || (daemon_address[0] == '/'))
307 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
309 sstrncpy (vl.host, daemon_address, sizeof (vl.host));
310 sstrncpy (vl.plugin, "rrdcached", sizeof (vl.plugin));
312 status = rrdc_connect (daemon_address);
315 ERROR ("rrdcached plugin: rrdc_connect (%s) failed with status %i.",
316 daemon_address, status);
321 status = rrdc_stats_get (&head);
324 ERROR ("rrdcached plugin: rrdc_stats_get failed with status %i.", status);
328 for (ptr = head; ptr != NULL; ptr = ptr->next)
330 if (ptr->type == RRDC_STATS_TYPE_GAUGE)
331 values[0].gauge = (gauge_t) ptr->value.gauge;
332 else if (ptr->type == RRDC_STATS_TYPE_COUNTER)
333 values[0].counter = (counter_t) ptr->value.counter;
337 if (strcasecmp ("QueueLength", ptr->name) == 0)
339 sstrncpy (vl.type, "queue_length", sizeof (vl.type));
340 sstrncpy (vl.type_instance, "", sizeof (vl.type_instance));
342 else if (strcasecmp ("UpdatesWritten", ptr->name) == 0)
344 sstrncpy (vl.type, "operations", sizeof (vl.type));
345 sstrncpy (vl.type_instance, "write-updates", sizeof (vl.type_instance));
347 else if (strcasecmp ("DataSetsWritten", ptr->name) == 0)
349 sstrncpy (vl.type, "operations", sizeof (vl.type));
350 sstrncpy (vl.type_instance, "write-data_sets",
351 sizeof (vl.type_instance));
353 else if (strcasecmp ("TreeNodesNumber", ptr->name) == 0)
355 sstrncpy (vl.type, "gauge", sizeof (vl.type));
356 sstrncpy (vl.type_instance, "tree_nodes", sizeof (vl.type_instance));
358 else if (strcasecmp ("TreeDepth", ptr->name) == 0)
360 sstrncpy (vl.type, "gauge", sizeof (vl.type));
361 sstrncpy (vl.type_instance, "tree_depth", sizeof (vl.type_instance));
363 else if (strcasecmp ("FlushesReceived", ptr->name) == 0)
365 sstrncpy (vl.type, "operations", sizeof (vl.type));
366 sstrncpy (vl.type_instance, "receive-flush", sizeof (vl.type_instance));
368 else if (strcasecmp ("JournalBytes", ptr->name) == 0)
370 sstrncpy (vl.type, "counter", sizeof (vl.type));
371 sstrncpy (vl.type_instance, "journal-bytes", sizeof (vl.type_instance));
373 else if (strcasecmp ("JournalRotate", ptr->name) == 0)
375 sstrncpy (vl.type, "counter", sizeof (vl.type));
376 sstrncpy (vl.type_instance, "journal-rotates", sizeof (vl.type_instance));
378 else if (strcasecmp ("UpdatesReceived", ptr->name) == 0)
380 sstrncpy (vl.type, "operations", sizeof (vl.type));
381 sstrncpy (vl.type_instance, "receive-update", sizeof (vl.type_instance));
385 DEBUG ("rrdcached plugin: rc_read: Unknown statistic `%s'.", ptr->name);
389 plugin_dispatch_values (&vl);
390 } /* for (ptr = head; ptr != NULL; ptr = ptr->next) */
392 rrdc_stats_free (head);
397 static int rc_init (void)
399 if (config_collect_stats)
400 plugin_register_read ("rrdcached", rc_read);
405 static int rc_write (const data_set_t *ds, const value_list_t *vl,
406 user_data_t __attribute__((unused)) *user_data)
408 char filename[PATH_MAX];
410 char *values_array[2];
413 if (daemon_address == NULL)
415 ERROR ("rrdcached plugin: daemon_address == NULL.");
416 plugin_unregister_write ("rrdcached");
420 if (strcmp (ds->type, vl->type) != 0)
422 ERROR ("rrdcached plugin: DS type does not match value list type");
426 if (value_list_to_filename (filename, sizeof (filename), vl) != 0)
428 ERROR ("rrdcached plugin: value_list_to_filename failed.");
432 if (value_list_to_string (values, sizeof (values), ds, vl) != 0)
434 ERROR ("rrdcached plugin: value_list_to_string failed.");
438 values_array[0] = values;
439 values_array[1] = NULL;
441 if (config_create_files)
445 status = stat (filename, &statbuf);
451 ERROR ("rrdcached plugin: stat (%s) failed: %s",
452 filename, sstrerror (errno, errbuf, sizeof (errbuf)));
456 status = cu_rrd_create_file (filename, ds, vl, &rrdcreate_config);
459 ERROR ("rrdcached plugin: cu_rrd_create_file (%s) failed.",
463 else if (rrdcreate_config.async)
468 status = rrdc_connect (daemon_address);
471 ERROR ("rrdcached plugin: rrdc_connect (%s) failed with status %i.",
472 daemon_address, status);
476 status = rrdc_update (filename, /* values_num = */ 1, (void *) values_array);
479 ERROR ("rrdcached plugin: rrdc_update (%s, [%s], 1) failed with "
481 filename, values_array[0], status);
488 static int rc_flush (__attribute__((unused)) cdtime_t timeout, /* {{{ */
489 const char *identifier,
490 __attribute__((unused)) user_data_t *ud)
492 char filename[PATH_MAX + 1];
495 if (identifier == NULL)
499 ssnprintf (filename, sizeof (filename), "%s/%s.rrd", datadir, identifier);
501 ssnprintf (filename, sizeof (filename), "%s.rrd", identifier);
503 status = rrdc_connect (daemon_address);
506 ERROR ("rrdcached plugin: rrdc_connect (%s) failed with status %i.",
507 daemon_address, status);
511 status = rrdc_flush (filename);
514 ERROR ("rrdcached plugin: rrdc_flush (%s) failed with status %i.",
518 DEBUG ("rrdcached plugin: rrdc_flush (%s): Success.", filename);
521 } /* }}} int rc_flush */
523 static int rc_shutdown (void)
527 } /* int rc_shutdown */
529 void module_register (void)
531 plugin_register_complex_config ("rrdcached", rc_config);
532 plugin_register_init ("rrdcached", rc_init);
533 plugin_register_shutdown ("rrdcached", rc_shutdown);
534 } /* void module_register */
537 * vim: set sw=2 sts=2 et :