2 * collectd - src/memcachec.c
3 * Copyright (C) 2009 Doug MacEachern
4 * Copyright (C) 2006-2009 Florian octo Forster
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the License is applicable.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Doug MacEachern <Doug.MacEachern at hyperic.com>
21 * Florian octo Forster <octo at collectd.org>
28 #include "utils_match.h"
30 #include <libmemcached/memcached.h>
36 typedef struct web_match_s web_match_t;
37 struct web_match_s /* {{{ */
51 typedef struct web_page_s web_page_t;
52 struct web_page_s /* {{{ */
70 static web_page_t *pages_g = NULL;
75 static void cmc_web_match_free (web_match_t *wm) /* {{{ */
83 match_destroy (wm->match);
84 cmc_web_match_free (wm->next);
86 } /* }}} void cmc_web_match_free */
88 static void cmc_web_page_free (web_page_t *wp) /* {{{ */
94 memcached_free(wp->memc);
102 cmc_web_match_free (wp->matches);
103 cmc_web_page_free (wp->next);
105 } /* }}} void cmc_web_page_free */
107 static int cmc_page_init_memc (web_page_t *wp) /* {{{ */
109 memcached_server_st *server;
111 wp->memc = memcached_create(NULL);
112 if (wp->memc == NULL)
114 ERROR ("memcachec plugin: memcached_create failed.");
118 server = memcached_servers_parse (wp->server);
119 memcached_server_push (wp->memc, server);
120 memcached_server_list_free (server);
123 } /* }}} int cmc_page_init_memc */
125 static int cmc_config_add_string (const char *name, char **dest, /* {{{ */
128 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
130 WARNING ("memcachec plugin: `%s' needs exactly one string argument.", name);
135 *dest = strdup (ci->values[0].value.string);
140 } /* }}} int cmc_config_add_string */
142 static int cmc_config_add_match_dstype (int *dstype_ret, /* {{{ */
147 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
149 WARNING ("memcachec plugin: `DSType' needs exactly one string argument.");
153 if (strncasecmp ("Gauge", ci->values[0].value.string,
154 strlen ("Gauge")) == 0)
156 dstype = UTILS_MATCH_DS_TYPE_GAUGE;
157 if (strcasecmp ("GaugeAverage", ci->values[0].value.string) == 0)
158 dstype |= UTILS_MATCH_CF_GAUGE_AVERAGE;
159 else if (strcasecmp ("GaugeMin", ci->values[0].value.string) == 0)
160 dstype |= UTILS_MATCH_CF_GAUGE_MIN;
161 else if (strcasecmp ("GaugeMax", ci->values[0].value.string) == 0)
162 dstype |= UTILS_MATCH_CF_GAUGE_MAX;
163 else if (strcasecmp ("GaugeLast", ci->values[0].value.string) == 0)
164 dstype |= UTILS_MATCH_CF_GAUGE_LAST;
168 else if (strncasecmp ("Counter", ci->values[0].value.string,
169 strlen ("Counter")) == 0)
171 dstype = UTILS_MATCH_DS_TYPE_COUNTER;
172 if (strcasecmp ("CounterSet", ci->values[0].value.string) == 0)
173 dstype |= UTILS_MATCH_CF_COUNTER_SET;
174 else if (strcasecmp ("CounterAdd", ci->values[0].value.string) == 0)
175 dstype |= UTILS_MATCH_CF_COUNTER_ADD;
176 else if (strcasecmp ("CounterInc", ci->values[0].value.string) == 0)
177 dstype |= UTILS_MATCH_CF_COUNTER_INC;
188 WARNING ("memcachec plugin: `%s' is not a valid argument to `DSType'.",
189 ci->values[0].value.string);
193 *dstype_ret = dstype;
195 } /* }}} int cmc_config_add_match_dstype */
197 static int cmc_config_add_match (web_page_t *page, /* {{{ */
203 if (ci->values_num != 0)
205 WARNING ("memcachec plugin: Ignoring arguments for the `Match' block.");
208 match = calloc (1, sizeof (*match));
211 ERROR ("memcachec plugin: calloc failed.");
216 for (int i = 0; i < ci->children_num; i++)
218 oconfig_item_t *child = ci->children + i;
220 if (strcasecmp ("Regex", child->key) == 0)
221 status = cmc_config_add_string ("Regex", &match->regex, child);
222 else if (strcasecmp ("ExcludeRegex", child->key) == 0)
223 status = cmc_config_add_string ("ExcludeRegex", &match->exclude_regex, child);
224 else if (strcasecmp ("DSType", child->key) == 0)
225 status = cmc_config_add_match_dstype (&match->dstype, child);
226 else if (strcasecmp ("Type", child->key) == 0)
227 status = cmc_config_add_string ("Type", &match->type, child);
228 else if (strcasecmp ("Instance", child->key) == 0)
229 status = cmc_config_add_string ("Instance", &match->instance, child);
232 WARNING ("memcachec plugin: Option `%s' not allowed here.", child->key);
238 } /* for (i = 0; i < ci->children_num; i++) */
242 if (match->regex == NULL)
244 WARNING ("memcachec plugin: `Regex' missing in `Match' block.");
248 if (match->type == NULL)
250 WARNING ("memcachec plugin: `Type' missing in `Match' block.");
254 if (match->dstype == 0)
256 WARNING ("memcachec plugin: `DSType' missing in `Match' block.");
261 } /* while (status == 0) */
265 cmc_web_match_free (match);
269 match->match = match_create_simple (match->regex, match->exclude_regex,
271 if (match->match == NULL)
273 ERROR ("memcachec plugin: match_create_simple failed.");
274 cmc_web_match_free (match);
281 prev = page->matches;
282 while ((prev != NULL) && (prev->next != NULL))
286 page->matches = match;
292 } /* }}} int cmc_config_add_match */
294 static int cmc_config_add_page (oconfig_item_t *ci) /* {{{ */
299 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
301 WARNING ("memcachec plugin: `Page' blocks need exactly one string argument.");
305 page = calloc (1, sizeof (*page));
308 ERROR ("memcachec plugin: calloc failed.");
314 page->instance = strdup (ci->values[0].value.string);
315 if (page->instance == NULL)
317 ERROR ("memcachec plugin: strdup failed.");
322 /* Process all children */
324 for (int i = 0; i < ci->children_num; i++)
326 oconfig_item_t *child = ci->children + i;
328 if (strcasecmp ("Server", child->key) == 0)
329 status = cmc_config_add_string ("Server", &page->server, child);
330 else if (strcasecmp ("Key", child->key) == 0)
331 status = cmc_config_add_string ("Key", &page->key, child);
332 else if (strcasecmp ("Match", child->key) == 0)
333 /* Be liberal with failing matches => don't set `status'. */
334 cmc_config_add_match (page, child);
337 WARNING ("memcachec plugin: Option `%s' not allowed here.", child->key);
343 } /* for (i = 0; i < ci->children_num; i++) */
345 /* Additionial sanity checks and libmemcached initialization. */
348 if (page->server == NULL)
350 WARNING ("memcachec plugin: `Server' missing in `Page' block.");
354 if (page->key == NULL)
356 WARNING ("memcachec plugin: `Key' missing in `Page' block.");
360 if (page->matches == NULL)
362 assert (page->instance != NULL);
363 WARNING ("memcachec plugin: No (valid) `Match' block "
364 "within `Page' block `%s'.", page->instance);
369 status = cmc_page_init_memc (page);
372 } /* while (status == 0) */
376 cmc_web_page_free (page);
380 /* Add the new page to the linked list */
388 while (prev->next != NULL)
394 } /* }}} int cmc_config_add_page */
396 static int cmc_config (oconfig_item_t *ci) /* {{{ */
405 for (int i = 0; i < ci->children_num; i++)
407 oconfig_item_t *child = ci->children + i;
409 if (strcasecmp ("Page", child->key) == 0)
411 status = cmc_config_add_page (child);
419 WARNING ("memcachec plugin: Option `%s' not allowed here.", child->key);
424 if ((success == 0) && (errors > 0))
426 ERROR ("memcachec plugin: All statements failed.");
431 } /* }}} int cmc_config */
433 static int cmc_init (void) /* {{{ */
437 INFO ("memcachec plugin: No pages have been defined.");
441 } /* }}} int cmc_init */
443 static void cmc_submit (const web_page_t *wp, const web_match_t *wm, /* {{{ */
446 value_list_t vl = VALUE_LIST_INIT;
450 sstrncpy (vl.plugin, "memcachec", sizeof (vl.plugin));
451 sstrncpy (vl.plugin_instance, wp->instance, sizeof (vl.plugin_instance));
452 sstrncpy (vl.type, wm->type, sizeof (vl.type));
453 sstrncpy (vl.type_instance, wm->instance, sizeof (vl.type_instance));
455 plugin_dispatch_values (&vl);
456 } /* }}} void cmc_submit */
458 static int cmc_read_page (web_page_t *wp) /* {{{ */
461 size_t string_length;
465 if (wp->memc == NULL)
468 wp->buffer = memcached_get (wp->memc, wp->key, strlen (wp->key),
469 &string_length, &flags, &rc);
470 if (rc != MEMCACHED_SUCCESS)
472 ERROR ("memcachec plugin: memcached_get failed: %s",
473 memcached_strerror (wp->memc, rc));
477 for (web_match_t *wm = wp->matches; wm != NULL; wm = wm->next)
479 cu_match_value_t *mv;
481 status = match_apply (wm->match, wp->buffer);
484 WARNING ("memcachec plugin: match_apply failed.");
488 mv = match_get_user_data (wm->match);
491 WARNING ("memcachec plugin: match_get_user_data returned NULL.");
495 cmc_submit (wp, wm, mv->value);
496 match_value_reset (mv);
497 } /* for (wm = wp->matches; wm != NULL; wm = wm->next) */
502 } /* }}} int cmc_read_page */
504 static int cmc_read (void) /* {{{ */
506 for (web_page_t *wp = pages_g; wp != NULL; wp = wp->next)
510 } /* }}} int cmc_read */
512 static int cmc_shutdown (void) /* {{{ */
514 cmc_web_page_free (pages_g);
518 } /* }}} int cmc_shutdown */
520 void module_register (void)
522 plugin_register_complex_config ("memcachec", cmc_config);
523 plugin_register_init ("memcachec", cmc_init);
524 plugin_register_read ("memcachec", cmc_read);
525 plugin_register_shutdown ("memcachec", cmc_shutdown);
526 } /* void module_register */
528 /* vim: set sw=2 sts=2 et fdm=marker : */