2 * collectd - src/rrdcached.c
3 * Copyright (C) 2008 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 verplant.org>
25 #include "utils_rrdcreate.h"
29 #include <rrd_client.h>
34 static const char *config_keys[] =
41 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
43 static char *datadir = NULL;
44 static char *daemon_address = NULL;
45 static int config_create_files = 1;
46 static int config_collect_stats = 1;
47 static rrdcreate_config_t rrdcreate_config =
54 /* timespans = */ NULL,
55 /* timespans_num = */ 0,
57 /* consolidation_functions = */ NULL,
58 /* consolidation_functions_num = */ 0
61 static int value_list_to_string (char *buffer, int buffer_len,
62 const data_set_t *ds, const value_list_t *vl)
68 assert (0 == strcmp (ds->type, vl->type));
70 memset (buffer, '\0', buffer_len);
72 status = ssnprintf (buffer, buffer_len, "%u", (unsigned int) vl->time);
73 if ((status < 1) || (status >= buffer_len))
77 for (i = 0; i < ds->ds_num; i++)
79 if ((ds->ds[i].type != DS_TYPE_COUNTER)
80 && (ds->ds[i].type != DS_TYPE_GAUGE)
81 && (ds->ds[i].type != DS_TYPE_DERIVE)
82 && (ds->ds[i].type != DS_TYPE_ABSOLUTE))
85 if (ds->ds[i].type == DS_TYPE_COUNTER)
87 status = ssnprintf (buffer + offset, buffer_len - offset,
88 ":%llu", vl->values[i].counter);
90 else if (ds->ds[i].type == DS_TYPE_GAUGE)
92 status = ssnprintf (buffer + offset, buffer_len - offset,
93 ":%f", vl->values[i].gauge);
95 else if (ds->ds[i].type == DS_TYPE_DERIVE) {
96 status = ssnprintf (buffer + offset, buffer_len - offset,
97 ":%"PRIi64, vl->values[i].derive);
99 else /* if (ds->ds[i].type == DS_TYPE_ABSOLUTE) */ {
100 status = ssnprintf (buffer + offset, buffer_len - offset,
101 ":%"PRIu64, vl->values[i].absolute);
105 if ((status < 1) || (status >= (buffer_len - offset)))
109 } /* for ds->ds_num */
112 } /* int value_list_to_string */
114 static int value_list_to_filename (char *buffer, int buffer_len,
115 const data_set_t *ds, const value_list_t *vl)
120 assert (0 == strcmp (ds->type, vl->type));
124 status = ssnprintf (buffer + offset, buffer_len - offset,
126 if ((status < 1) || (status >= buffer_len - offset))
131 status = ssnprintf (buffer + offset, buffer_len - offset,
133 if ((status < 1) || (status >= buffer_len - offset))
137 if (strlen (vl->plugin_instance) > 0)
138 status = ssnprintf (buffer + offset, buffer_len - offset,
139 "%s-%s/", vl->plugin, vl->plugin_instance);
141 status = ssnprintf (buffer + offset, buffer_len - offset,
143 if ((status < 1) || (status >= buffer_len - offset))
147 if (strlen (vl->type_instance) > 0)
148 status = ssnprintf (buffer + offset, buffer_len - offset,
149 "%s-%s", vl->type, vl->type_instance);
151 status = ssnprintf (buffer + offset, buffer_len - offset,
153 if ((status < 1) || (status >= buffer_len - offset))
157 strncpy (buffer + offset, ".rrd", buffer_len - offset);
158 buffer[buffer_len - 1] = 0;
161 } /* int value_list_to_filename */
163 static int rc_config (const char *key, const char *value)
165 if (strcasecmp ("DataDir", key) == 0)
169 datadir = strdup (value);
172 int len = strlen (datadir);
173 while ((len > 0) && (datadir[len - 1] == '/'))
185 else if (strcasecmp ("DaemonAddress", key) == 0)
187 sfree (daemon_address);
188 daemon_address = strdup (value);
189 if (daemon_address == NULL)
191 ERROR ("rrdcached plugin: strdup failed.");
195 else if (strcasecmp ("CreateFiles", key) == 0)
197 if (IS_FALSE (value))
198 config_create_files = 0;
200 config_create_files = 1;
202 else if (strcasecmp ("CollectStatistics", key) == 0)
204 if (IS_FALSE (value))
205 config_collect_stats = 0;
207 config_collect_stats = 1;
214 } /* int rc_config */
216 static int rc_read (void)
223 value_list_t vl = VALUE_LIST_INIT;
225 if (daemon_address == NULL)
228 if (config_collect_stats == 0)
234 if ((strncmp ("unix:", daemon_address, strlen ("unix:")) == 0)
235 || (daemon_address[0] == '/'))
236 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
238 sstrncpy (vl.host, daemon_address, sizeof (vl.host));
239 sstrncpy (vl.plugin, "rrdcached", sizeof (vl.plugin));
242 status = rrdc_stats_get (&head);
245 ERROR ("rrdcached plugin: rrdc_stats_get failed with status %i.", status);
249 for (ptr = head; ptr != NULL; ptr = ptr->next)
251 if (ptr->type == RRDC_STATS_TYPE_GAUGE)
252 values[0].gauge = (gauge_t) ptr->value.gauge;
253 else if (ptr->type == RRDC_STATS_TYPE_COUNTER)
254 values[0].counter = (counter_t) ptr->value.counter;
258 if (strcasecmp ("QueueLength", ptr->name) == 0)
260 sstrncpy (vl.type, "queue_length", sizeof (vl.type));
261 sstrncpy (vl.type_instance, "", sizeof (vl.type_instance));
263 else if (strcasecmp ("UpdatesWritten", ptr->name) == 0)
265 sstrncpy (vl.type, "operations", sizeof (vl.type));
266 sstrncpy (vl.type_instance, "write-updates", sizeof (vl.type_instance));
268 else if (strcasecmp ("DataSetsWritten", ptr->name) == 0)
270 sstrncpy (vl.type, "operations", sizeof (vl.type));
271 sstrncpy (vl.type_instance, "write-data_sets",
272 sizeof (vl.type_instance));
274 else if (strcasecmp ("TreeNodesNumber", ptr->name) == 0)
276 sstrncpy (vl.type, "gauge", sizeof (vl.type));
277 sstrncpy (vl.type_instance, "tree_nodes", sizeof (vl.type_instance));
279 else if (strcasecmp ("TreeDepth", ptr->name) == 0)
281 sstrncpy (vl.type, "gauge", sizeof (vl.type));
282 sstrncpy (vl.type_instance, "tree_depth", sizeof (vl.type_instance));
284 else if (strcasecmp ("FlushesReceived", ptr->name) == 0)
286 sstrncpy (vl.type, "operations", sizeof (vl.type));
287 sstrncpy (vl.type_instance, "receive-flush", sizeof (vl.type_instance));
289 else if (strcasecmp ("JournalBytes", ptr->name) == 0)
291 sstrncpy (vl.type, "counter", sizeof (vl.type));
292 sstrncpy (vl.type_instance, "journal-bytes", sizeof (vl.type_instance));
294 else if (strcasecmp ("JournalRotate", ptr->name) == 0)
296 sstrncpy (vl.type, "counter", sizeof (vl.type));
297 sstrncpy (vl.type_instance, "journal-rotates", sizeof (vl.type_instance));
299 else if (strcasecmp ("UpdatesReceived", ptr->name) == 0)
301 sstrncpy (vl.type, "operations", sizeof (vl.type));
302 sstrncpy (vl.type_instance, "receive-update", sizeof (vl.type_instance));
306 DEBUG ("rrdcached plugin: rc_read: Unknown statistic `%s'.", ptr->name);
310 plugin_dispatch_values (&vl);
311 } /* for (ptr = head; ptr != NULL; ptr = ptr->next) */
313 rrdc_stats_free (head);
318 static int rc_init (void)
320 if (config_collect_stats != 0)
321 plugin_register_read ("rrdcached", rc_read);
326 static int rc_write (const data_set_t *ds, const value_list_t *vl,
327 user_data_t __attribute__((unused)) *user_data)
331 char *values_array[2];
334 if (daemon_address == NULL)
336 ERROR ("rrdcached plugin: daemon_address == NULL.");
337 plugin_unregister_write ("rrdcached");
341 if (strcmp (ds->type, vl->type) != 0)
343 ERROR ("rrdcached plugin: DS type does not match value list type");
347 if (value_list_to_filename (filename, sizeof (filename), ds, vl) != 0)
349 ERROR ("rrdcached plugin: value_list_to_filename failed.");
353 if (value_list_to_string (values, sizeof (values), ds, vl) != 0)
355 ERROR ("rrdcached plugin: value_list_to_string failed.");
359 values_array[0] = values;
360 values_array[1] = NULL;
362 if (config_create_files != 0)
366 status = stat (filename, &statbuf);
372 ERROR ("rrdcached plugin: stat (%s) failed: %s",
373 filename, sstrerror (errno, errbuf, sizeof (errbuf)));
377 status = cu_rrd_create_file (filename, ds, vl, &rrdcreate_config);
380 ERROR ("rrdcached plugin: cu_rrd_create_file (%s) failed.",
387 status = rrdc_connect (daemon_address);
390 ERROR ("rrdcached plugin: rrdc_connect (%s) failed with status %i.",
391 daemon_address, status);
395 status = rrdc_update (filename, /* values_num = */ 1, (void *) values_array);
398 ERROR ("rrdcached plugin: rrdc_update (%s, [%s], 1) failed with "
400 filename, values_array[0], status);
407 static int rc_shutdown (void)
411 } /* int rc_shutdown */
413 void module_register (void)
415 plugin_register_config ("rrdcached", rc_config,
416 config_keys, config_keys_num);
417 plugin_register_init ("rrdcached", rc_init);
418 plugin_register_write ("rrdcached", rc_write, /* user_data = */ NULL);
419 plugin_register_shutdown ("rrdcached", rc_shutdown);
420 } /* void module_register */
423 * vim: set sw=2 sts=2 et :