2 * collectd - src/utils_tail_match.c
3 * Copyright (C) 2007-2008 C-Ware, Inc.
4 * Copyright (C) 2008 Florian Forster
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
25 * Luke Heberling <lukeh at c-ware.com>
26 * Florian Forster <octo at collectd.org>
29 * Encapsulates useful code to plugins which must parse a log file.
36 #include "utils_latency_config.h"
37 #include "utils_match.h"
38 #include "utils_tail.h"
39 #include "utils_tail_match.h"
41 struct cu_tail_match_simple_s {
42 char plugin[DATA_MAX_NAME_LEN];
43 char plugin_instance[DATA_MAX_NAME_LEN];
44 char type[DATA_MAX_NAME_LEN];
45 char type_instance[DATA_MAX_NAME_LEN];
47 latency_config_t latency_config;
49 typedef struct cu_tail_match_simple_s cu_tail_match_simple_t;
51 struct cu_tail_match_match_s {
54 int (*submit)(cu_match_t *match, void *user_data);
55 void (*free)(void *user_data);
57 typedef struct cu_tail_match_match_s cu_tail_match_match_t;
59 struct cu_tail_match_s {
64 cu_tail_match_match_t *matches;
71 static int simple_submit_match(cu_match_t *match, void *user_data) {
72 cu_tail_match_simple_t *data = (cu_tail_match_simple_t *)user_data;
73 cu_match_value_t *match_value;
74 value_list_t vl = VALUE_LIST_INIT;
77 match_value = (cu_match_value_t *)match_get_user_data(match);
78 if (match_value == NULL)
81 if ((match_value->ds_type & UTILS_MATCH_DS_TYPE_GAUGE) &&
82 (match_value->values_num == 0))
83 values[0].gauge = NAN;
85 values[0] = match_value->value;
89 sstrncpy(vl.plugin, data->plugin, sizeof(vl.plugin));
90 sstrncpy(vl.plugin_instance, data->plugin_instance,
91 sizeof(vl.plugin_instance));
92 sstrncpy(vl.type, data->type, sizeof(vl.type));
93 sstrncpy(vl.type_instance, data->type_instance, sizeof(vl.type_instance));
95 vl.interval = data->interval;
96 plugin_dispatch_values(&vl);
98 match_value_reset(match_value);
100 } /* int simple_submit_match */
102 static int latency_submit_match(cu_match_t *match, void *user_data) {
103 cu_tail_match_simple_t *data = (cu_tail_match_simple_t *)user_data;
104 cu_match_value_t *match_value;
105 value_list_t vl = VALUE_LIST_INIT;
107 match_value = (cu_match_value_t *)match_get_user_data(match);
108 if (match_value == NULL)
111 sstrncpy(vl.plugin, data->plugin, sizeof(vl.plugin));
112 sstrncpy(vl.plugin_instance, data->plugin_instance,
113 sizeof(vl.plugin_instance));
114 vl.interval = data->interval;
117 /* Submit percentiles */
118 sstrncpy(vl.type, data->type, sizeof(vl.type));
119 for (size_t i = 0; i < data->latency_config.percentile_num; i++) {
120 if (strlen(data->type_instance) != 0)
121 snprintf(vl.type_instance, sizeof(vl.type_instance), "%.50s-%.5g",
122 data->type_instance, data->latency_config.percentile[i]);
124 snprintf(vl.type_instance, sizeof(vl.type_instance), "%.5g",
125 data->latency_config.percentile[i]);
127 vl.values = &(value_t){
129 (match_value->values_num != 0)
130 ? CDTIME_T_TO_DOUBLE(latency_counter_get_percentile(
131 match_value->latency, data->latency_config.percentile[i]))
136 plugin_dispatch_values(&vl);
140 if (data->latency_config.bucket_type != NULL)
141 sstrncpy(vl.type, data->latency_config.bucket_type, sizeof(vl.type));
143 sstrncpy(vl.type, "bucket", sizeof(vl.type));
145 for (size_t i = 0; i < data->latency_config.buckets_num; i++) {
146 latency_bucket_t bucket = data->latency_config.buckets[i];
148 double lower_bound = CDTIME_T_TO_DOUBLE(bucket.lower_bound);
150 bucket.upper_bound ? CDTIME_T_TO_DOUBLE(bucket.upper_bound) : INFINITY;
152 if (strlen(data->type_instance) != 0)
153 snprintf(vl.type_instance, sizeof(vl.type_instance), "%.50s-%.50s-%g_%g",
154 data->type, data->type_instance, lower_bound, upper_bound);
156 snprintf(vl.type_instance, sizeof(vl.type_instance), "%.50s-%g_%g",
157 data->type, lower_bound, upper_bound);
159 vl.values = &(value_t){
161 latency_counter_get_rate(match_value->latency, bucket.lower_bound,
162 bucket.upper_bound, vl.time),
166 plugin_dispatch_values(&vl);
169 match_value->value.gauge = NAN;
170 match_value->values_num = 0;
171 latency_counter_reset(match_value->latency);
174 } /* int latency_submit_match */
176 static int tail_callback(void *data, char *buf,
177 int __attribute__((unused)) buflen) {
178 cu_tail_match_t *obj = (cu_tail_match_t *)data;
180 for (size_t i = 0; i < obj->matches_num; i++)
181 match_apply(obj->matches[i].match, buf);
184 } /* int tail_callback */
186 static void tail_match_simple_free(void *data) {
187 cu_tail_match_simple_t *user_data = (cu_tail_match_simple_t *)data;
188 latency_config_free(user_data->latency_config);
190 } /* void tail_match_simple_free */
195 cu_tail_match_t *tail_match_create(const char *filename) {
196 cu_tail_match_t *obj;
198 obj = calloc(1, sizeof(*obj));
202 obj->tail = cu_tail_create(filename);
203 if (obj->tail == NULL) {
209 } /* cu_tail_match_t *tail_match_create */
211 void tail_match_destroy(cu_tail_match_t *obj) {
215 if (obj->tail != NULL) {
216 cu_tail_destroy(obj->tail);
220 for (size_t i = 0; i < obj->matches_num; i++) {
221 cu_tail_match_match_t *match = obj->matches + i;
222 if (match->match != NULL) {
223 match_destroy(match->match);
227 if ((match->user_data != NULL) && (match->free != NULL))
228 (*match->free)(match->user_data);
229 match->user_data = NULL;
234 } /* void tail_match_destroy */
236 int tail_match_add_match(cu_tail_match_t *obj, cu_match_t *match,
237 int (*submit_match)(cu_match_t *match,
240 void (*free_user_data)(void *user_data)) {
241 cu_tail_match_match_t *temp;
243 temp = realloc(obj->matches,
244 sizeof(cu_tail_match_match_t) * (obj->matches_num + 1));
251 DEBUG("tail_match_add_match interval %lf",
252 CDTIME_T_TO_DOUBLE(((cu_tail_match_simple_t *)user_data)->interval));
253 temp = obj->matches + (obj->matches_num - 1);
256 temp->user_data = user_data;
257 temp->submit = submit_match;
258 temp->free = free_user_data;
261 } /* int tail_match_add_match */
263 int tail_match_add_match_simple(cu_tail_match_t *obj, const char *regex,
264 const char *excluderegex, int ds_type,
265 const char *plugin, const char *plugin_instance,
266 const char *type, const char *type_instance,
267 const latency_config_t latency_cfg,
268 const cdtime_t interval) {
270 cu_tail_match_simple_t *user_data;
273 match = match_create_simple(regex, excluderegex, ds_type);
277 user_data = calloc(1, sizeof(*user_data));
278 if (user_data == NULL) {
279 match_destroy(match);
283 sstrncpy(user_data->plugin, plugin, sizeof(user_data->plugin));
284 if (plugin_instance != NULL)
285 sstrncpy(user_data->plugin_instance, plugin_instance,
286 sizeof(user_data->plugin_instance));
288 sstrncpy(user_data->type, type, sizeof(user_data->type));
289 if (type_instance != NULL)
290 sstrncpy(user_data->type_instance, type_instance,
291 sizeof(user_data->type_instance));
293 user_data->interval = interval;
295 if ((ds_type & UTILS_MATCH_DS_TYPE_GAUGE) &&
296 (ds_type & UTILS_MATCH_CF_GAUGE_DIST)) {
297 status = latency_config_copy(&user_data->latency_config, latency_cfg);
299 ERROR("tail_match_add_match_simple: latency_config_copy() failed.");
304 status = tail_match_add_match(obj, match, latency_submit_match, user_data,
305 tail_match_simple_free);
308 tail_match_add_match(obj, match, simple_submit_match, user_data, free);
313 tail_match_simple_free(user_data);
314 match_destroy(match);
318 } /* int tail_match_add_match_simple */
320 int tail_match_read(cu_tail_match_t *obj) {
324 status = cu_tail_read(obj->tail, buffer, sizeof(buffer), tail_callback,
327 ERROR("tail_match: cu_tail_read failed.");
331 for (size_t i = 0; i < obj->matches_num; i++) {
332 cu_tail_match_match_t *lt_match = obj->matches + i;
334 if (lt_match->submit == NULL)
337 (*lt_match->submit)(lt_match->match, lt_match->user_data);
341 } /* int tail_match_read */