2 * collectd - src/tail.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_tail_match.h"
29 * <File "/var/log/exim4/mainlog">
32 * Regex "S=([1-9][0-9]*)"
33 * ExcludeRegex "U=root.*S="
42 struct ctail_config_match_s
50 typedef struct ctail_config_match_s ctail_config_match_t;
52 cu_tail_match_t **tail_match_list = NULL;
53 size_t tail_match_list_num = 0;
55 static int ctail_config_add_match_dstype (ctail_config_match_t *cm,
58 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
60 WARNING ("tail plugin: `DSType' needs exactly one string argument.");
64 if (strncasecmp ("Gauge", ci->values[0].value.string, strlen ("Gauge")) == 0)
66 cm->flags = UTILS_MATCH_DS_TYPE_GAUGE;
67 if (strcasecmp ("GaugeAverage", ci->values[0].value.string) == 0)
68 cm->flags |= UTILS_MATCH_CF_GAUGE_AVERAGE;
69 else if (strcasecmp ("GaugeMin", ci->values[0].value.string) == 0)
70 cm->flags |= UTILS_MATCH_CF_GAUGE_MIN;
71 else if (strcasecmp ("GaugeMax", ci->values[0].value.string) == 0)
72 cm->flags |= UTILS_MATCH_CF_GAUGE_MAX;
73 else if (strcasecmp ("GaugeLast", ci->values[0].value.string) == 0)
74 cm->flags |= UTILS_MATCH_CF_GAUGE_LAST;
78 else if (strncasecmp ("Counter", ci->values[0].value.string, strlen ("Counter")) == 0)
80 cm->flags = UTILS_MATCH_DS_TYPE_COUNTER;
81 if (strcasecmp ("CounterSet", ci->values[0].value.string) == 0)
82 cm->flags |= UTILS_MATCH_CF_COUNTER_SET;
83 else if (strcasecmp ("CounterAdd", ci->values[0].value.string) == 0)
84 cm->flags |= UTILS_MATCH_CF_COUNTER_ADD;
85 else if (strcasecmp ("CounterInc", ci->values[0].value.string) == 0)
86 cm->flags |= UTILS_MATCH_CF_COUNTER_INC;
90 else if (strncasecmp ("Derive", ci->values[0].value.string, strlen ("Derive")) == 0)
92 cm->flags = UTILS_MATCH_DS_TYPE_DERIVE;
93 if (strcasecmp ("DeriveSet", ci->values[0].value.string) == 0)
94 cm->flags |= UTILS_MATCH_CF_DERIVE_SET;
95 else if (strcasecmp ("DeriveAdd", ci->values[0].value.string) == 0)
96 cm->flags |= UTILS_MATCH_CF_DERIVE_ADD;
97 else if (strcasecmp ("DeriveInc", ci->values[0].value.string) == 0)
98 cm->flags |= UTILS_MATCH_CF_DERIVE_INC;
102 else if (strncasecmp ("Absolute", ci->values[0].value.string, strlen ("Absolute")) == 0)
104 cm->flags = UTILS_MATCH_DS_TYPE_ABSOLUTE;
105 if (strcasecmp ("AbsoluteSet", ci->values[0].value.string) == 0)
106 cm->flags |= UTILS_MATCH_CF_ABSOLUTE_SET;
117 WARNING ("tail plugin: `%s' is not a valid argument to `DSType'.",
118 ci->values[0].value.string);
123 } /* int ctail_config_add_match_dstype */
125 static int ctail_config_add_match (cu_tail_match_t *tm,
126 const char *plugin_instance, oconfig_item_t *ci)
128 ctail_config_match_t cm;
132 memset (&cm, '\0', sizeof (cm));
134 if (ci->values_num != 0)
136 WARNING ("tail plugin: Ignoring arguments for the `Match' block.");
140 for (i = 0; i < ci->children_num; i++)
142 oconfig_item_t *option = ci->children + i;
144 if (strcasecmp ("Regex", option->key) == 0)
145 status = cf_util_get_string (option, &cm.regex);
146 else if (strcasecmp ("ExcludeRegex", option->key) == 0)
147 status = cf_util_get_string (option, &cm.excluderegex);
148 else if (strcasecmp ("DSType", option->key) == 0)
149 status = ctail_config_add_match_dstype (&cm, option);
150 else if (strcasecmp ("Type", option->key) == 0)
151 status = cf_util_get_string (option, &cm.type);
152 else if (strcasecmp ("Instance", option->key) == 0)
153 status = cf_util_get_string (option, &cm.type_instance);
156 WARNING ("tail plugin: Option `%s' not allowed here.", option->key);
162 } /* for (i = 0; i < ci->children_num; i++) */
166 if (cm.regex == NULL)
168 WARNING ("tail plugin: `Regex' missing in `Match' block.");
175 WARNING ("tail plugin: `Type' missing in `Match' block.");
182 WARNING ("tail plugin: `DSType' missing in `Match' block.");
188 } /* while (status == 0) */
192 status = tail_match_add_match_simple (tm, cm.regex, cm.excluderegex,
193 cm.flags, "tail", plugin_instance, cm.type, cm.type_instance);
197 ERROR ("tail plugin: tail_match_add_match_simple failed.");
202 sfree (cm.excluderegex);
204 sfree (cm.type_instance);
207 } /* int ctail_config_add_match */
209 static int ctail_config_add_file (oconfig_item_t *ci)
212 char *plugin_instance = NULL;
216 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
218 WARNING ("tail plugin: `File' needs exactly one string argument.");
222 tm = tail_match_create (ci->values[0].value.string);
225 ERROR ("tail plugin: tail_match_create (%s) failed.",
226 ci->values[0].value.string);
230 for (i = 0; i < ci->children_num; i++)
232 oconfig_item_t *option = ci->children + i;
235 if (strcasecmp ("Match", option->key) == 0)
237 status = ctail_config_add_match (tm, plugin_instance, option);
240 /* Be mild with failed matches.. */
243 else if (strcasecmp ("Instance", option->key) == 0)
244 status = cf_util_get_string (option, &plugin_instance);
247 WARNING ("tail plugin: Option `%s' not allowed here.", option->key);
253 } /* for (i = 0; i < ci->children_num; i++) */
255 sfree (plugin_instance);
257 if (num_matches == 0)
259 ERROR ("tail plugin: No (valid) matches found for file `%s'.",
260 ci->values[0].value.string);
261 tail_match_destroy (tm);
266 cu_tail_match_t **temp;
268 temp = (cu_tail_match_t **) realloc (tail_match_list,
269 sizeof (cu_tail_match_t *) * (tail_match_list_num + 1));
272 ERROR ("tail plugin: realloc failed.");
273 tail_match_destroy (tm);
277 tail_match_list = temp;
278 tail_match_list[tail_match_list_num] = tm;
279 tail_match_list_num++;
283 } /* int ctail_config_add_file */
285 static int ctail_config (oconfig_item_t *ci)
289 for (i = 0; i < ci->children_num; i++)
291 oconfig_item_t *option = ci->children + i;
293 if (strcasecmp ("File", option->key) == 0)
294 ctail_config_add_file (option);
297 WARNING ("tail plugin: Option `%s' not allowed here.", option->key);
299 } /* for (i = 0; i < ci->children_num; i++) */
302 } /* int ctail_config */
304 static int ctail_init (void)
306 if (tail_match_list_num == 0)
308 WARNING ("tail plugin: File list is empty. Returning an error.");
313 } /* int ctail_init */
315 static int ctail_read (void)
320 for (i = 0; i < tail_match_list_num; i++)
324 status = tail_match_read (tail_match_list[i]);
327 ERROR ("tail plugin: tail_match_read[%zu] failed.", i);
338 } /* int ctail_read */
340 static int ctail_shutdown (void)
344 for (i = 0; i < tail_match_list_num; i++)
346 tail_match_destroy (tail_match_list[i]);
347 tail_match_list[i] = NULL;
349 sfree (tail_match_list);
350 tail_match_list_num = 0;
353 } /* int ctail_shutdown */
355 void module_register (void)
357 plugin_register_complex_config ("tail", ctail_config);
358 plugin_register_init ("tail", ctail_init);
359 plugin_register_read ("tail", ctail_read);
360 plugin_register_shutdown ("tail", ctail_shutdown);
361 } /* void module_register */
363 /* vim: set sw=2 sts=2 ts=8 : */