2 * collectd - src/aggregation.c
3 * Copyright (C) 2012 Florian Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Florian Forster <octo at collectd.org>
30 #include "meta_data.h"
32 #include "utils_cache.h" /* for uc_get_rate() */
33 #include "utils_subst.h"
34 #include "utils_vl_lookup.h"
36 #define AGG_MATCHES_ALL(str) (strcmp("/.*/", str) == 0)
37 #define AGG_FUNC_PLACEHOLDER "%{aggregation}"
39 struct aggregation_s /* {{{ */
41 lookup_identifier_t ident;
42 unsigned int group_by;
44 unsigned int regex_fields;
48 char *set_plugin_instance;
49 char *set_type_instance;
58 typedef struct aggregation_s aggregation_t;
60 struct agg_instance_s;
61 typedef struct agg_instance_s agg_instance_t;
62 struct agg_instance_s /* {{{ */
65 lookup_identifier_t ident;
76 rate_to_value_state_t *state_num;
77 rate_to_value_state_t *state_sum;
78 rate_to_value_state_t *state_average;
79 rate_to_value_state_t *state_min;
80 rate_to_value_state_t *state_max;
81 rate_to_value_state_t *state_stddev;
86 static lookup_t *lookup = NULL;
88 static pthread_mutex_t agg_instance_list_lock = PTHREAD_MUTEX_INITIALIZER;
89 static agg_instance_t *agg_instance_list_head = NULL;
91 static _Bool agg_is_regex(char const *str) /* {{{ */
102 if ((str[0] == '/') && (str[len - 1] == '/'))
106 } /* }}} _Bool agg_is_regex */
108 static void agg_destroy(aggregation_t *agg) /* {{{ */
111 } /* }}} void agg_destroy */
113 /* Frees all dynamically allocated memory within the instance. */
114 static void agg_instance_destroy(agg_instance_t *inst) /* {{{ */
119 /* Remove this instance from the global list of instances. */
120 pthread_mutex_lock(&agg_instance_list_lock);
121 if (agg_instance_list_head == inst)
122 agg_instance_list_head = inst->next;
123 else if (agg_instance_list_head != NULL) {
124 agg_instance_t *prev = agg_instance_list_head;
125 while ((prev != NULL) && (prev->next != inst))
128 prev->next = inst->next;
130 pthread_mutex_unlock(&agg_instance_list_lock);
132 sfree(inst->state_num);
133 sfree(inst->state_sum);
134 sfree(inst->state_average);
135 sfree(inst->state_min);
136 sfree(inst->state_max);
137 sfree(inst->state_stddev);
139 memset(inst, 0, sizeof(*inst));
143 } /* }}} void agg_instance_destroy */
145 static int agg_instance_create_name(agg_instance_t *inst, /* {{{ */
146 value_list_t const *vl,
147 aggregation_t const *agg) {
148 #define COPY_FIELD(buffer, buffer_size, field, group_mask, all_value) \
150 if (agg->set_##field != NULL) \
151 sstrncpy(buffer, agg->set_##field, buffer_size); \
152 else if ((agg->regex_fields & group_mask) && (agg->group_by & group_mask)) \
153 sstrncpy(buffer, vl->field, buffer_size); \
154 else if ((agg->regex_fields & group_mask) && \
155 (AGG_MATCHES_ALL(agg->ident.field))) \
156 sstrncpy(buffer, all_value, buffer_size); \
158 sstrncpy(buffer, agg->ident.field, buffer_size); \
162 COPY_FIELD(inst->ident.host, sizeof(inst->ident.host), host, LU_GROUP_BY_HOST,
166 if (agg->set_plugin != NULL)
167 sstrncpy(inst->ident.plugin, agg->set_plugin, sizeof(inst->ident.plugin));
169 sstrncpy(inst->ident.plugin, "aggregation", sizeof(inst->ident.plugin));
171 /* Plugin instance */
172 if (agg->set_plugin_instance != NULL)
173 sstrncpy(inst->ident.plugin_instance, agg->set_plugin_instance,
174 sizeof(inst->ident.plugin_instance));
176 char tmp_plugin[DATA_MAX_NAME_LEN];
177 char tmp_plugin_instance[DATA_MAX_NAME_LEN] = "";
179 if ((agg->regex_fields & LU_GROUP_BY_PLUGIN) &&
180 (agg->group_by & LU_GROUP_BY_PLUGIN))
181 sstrncpy(tmp_plugin, vl->plugin, sizeof(tmp_plugin));
182 else if ((agg->regex_fields & LU_GROUP_BY_PLUGIN) &&
183 (AGG_MATCHES_ALL(agg->ident.plugin)))
184 sstrncpy(tmp_plugin, "", sizeof(tmp_plugin));
186 sstrncpy(tmp_plugin, agg->ident.plugin, sizeof(tmp_plugin));
188 if ((agg->regex_fields & LU_GROUP_BY_PLUGIN_INSTANCE) &&
189 (agg->group_by & LU_GROUP_BY_PLUGIN_INSTANCE))
190 sstrncpy(tmp_plugin_instance, vl->plugin_instance,
191 sizeof(tmp_plugin_instance));
192 else if ((agg->regex_fields & LU_GROUP_BY_PLUGIN_INSTANCE) &&
193 (AGG_MATCHES_ALL(agg->ident.plugin_instance)))
194 sstrncpy(tmp_plugin_instance, "", sizeof(tmp_plugin_instance));
196 sstrncpy(tmp_plugin_instance, agg->ident.plugin_instance,
197 sizeof(tmp_plugin_instance));
199 if ((strcmp("", tmp_plugin) == 0) && (strcmp("", tmp_plugin_instance) == 0))
200 sstrncpy(inst->ident.plugin_instance, AGG_FUNC_PLACEHOLDER,
201 sizeof(inst->ident.plugin_instance));
202 else if (strcmp("", tmp_plugin) != 0)
203 snprintf(inst->ident.plugin_instance, sizeof(inst->ident.plugin_instance),
204 "%s-%s", tmp_plugin, AGG_FUNC_PLACEHOLDER);
205 else if (strcmp("", tmp_plugin_instance) != 0)
206 snprintf(inst->ident.plugin_instance, sizeof(inst->ident.plugin_instance),
207 "%s-%s", tmp_plugin_instance, AGG_FUNC_PLACEHOLDER);
209 snprintf(inst->ident.plugin_instance, sizeof(inst->ident.plugin_instance),
210 "%s-%s-%s", tmp_plugin, tmp_plugin_instance,
211 AGG_FUNC_PLACEHOLDER);
215 sstrncpy(inst->ident.type, agg->ident.type, sizeof(inst->ident.type));
218 COPY_FIELD(inst->ident.type_instance, sizeof(inst->ident.type_instance),
219 type_instance, LU_GROUP_BY_TYPE_INSTANCE, "");
224 } /* }}} int agg_instance_create_name */
226 /* Create a new aggregation instance. */
227 static agg_instance_t *agg_instance_create(data_set_t const *ds, /* {{{ */
228 value_list_t const *vl,
229 aggregation_t *agg) {
230 agg_instance_t *inst;
232 DEBUG("aggregation plugin: Creating new instance.");
234 inst = calloc(1, sizeof(*inst));
236 ERROR("aggregation plugin: calloc() failed.");
239 pthread_mutex_init(&inst->lock, /* attr = */ NULL);
241 inst->ds_type = ds->ds[0].type;
243 agg_instance_create_name(inst, vl, agg);
248 #define INIT_STATE(field) \
250 inst->state_##field = NULL; \
251 if (agg->calc_##field) { \
252 inst->state_##field = calloc(1, sizeof(*inst->state_##field)); \
253 if (inst->state_##field == NULL) { \
254 agg_instance_destroy(inst); \
256 ERROR("aggregation plugin: calloc() failed."); \
271 pthread_mutex_lock(&agg_instance_list_lock);
272 inst->next = agg_instance_list_head;
273 agg_instance_list_head = inst;
274 pthread_mutex_unlock(&agg_instance_list_lock);
277 } /* }}} agg_instance_t *agg_instance_create */
279 /* Update the num, sum, min, max, ... fields of the aggregation instance, if
280 * the rate of the value list is available. Value lists with more than one data
281 * source are not supported and will return an error. Returns zero on success
282 * and non-zero otherwise. */
283 static int agg_instance_update(agg_instance_t *inst, /* {{{ */
284 data_set_t const *ds, value_list_t const *vl) {
287 if (ds->ds_num != 1) {
288 ERROR("aggregation plugin: The \"%s\" type (data set) has more than one "
289 "data source. This is currently not supported by this plugin. "
295 rate = uc_get_rate(ds, vl);
297 char ident[6 * DATA_MAX_NAME_LEN];
298 FORMAT_VL(ident, sizeof(ident), vl);
299 ERROR("aggregation plugin: Unable to read the current rate of \"%s\".",
304 if (isnan(rate[0])) {
309 pthread_mutex_lock(&inst->lock);
312 inst->sum += rate[0];
313 inst->squares_sum += (rate[0] * rate[0]);
315 if (isnan(inst->min) || (inst->min > rate[0]))
317 if (isnan(inst->max) || (inst->max < rate[0]))
320 pthread_mutex_unlock(&inst->lock);
324 } /* }}} int agg_instance_update */
326 static int agg_instance_read_func(agg_instance_t *inst, /* {{{ */
327 char const *func, gauge_t rate,
328 rate_to_value_state_t *state,
329 value_list_t *vl, char const *pi_prefix,
334 if (pi_prefix[0] != 0)
335 subst_string(vl->plugin_instance, sizeof(vl->plugin_instance), pi_prefix,
336 AGG_FUNC_PLACEHOLDER, func);
338 sstrncpy(vl->plugin_instance, func, sizeof(vl->plugin_instance));
340 status = rate_to_value(&v, rate, state, inst->ds_type, t);
342 /* If this is the first iteration and rate_to_value() was asked to return a
343 * COUNTER or a DERIVE, it will return EAGAIN. Catch this and handle
345 if (status == EAGAIN)
348 WARNING("aggregation plugin: rate_to_value failed with status %i.", status);
355 plugin_dispatch_values(vl);
361 } /* }}} int agg_instance_read_func */
363 static int agg_instance_read(agg_instance_t *inst, cdtime_t t) /* {{{ */
365 value_list_t vl = VALUE_LIST_INIT;
367 /* Pre-set all the fields in the value list that will not change per
368 * aggregation type (sum, average, ...). The struct will be re-used and must
369 * therefore be dispatched using the "secure" function. */
374 vl.meta = meta_data_create();
375 if (vl.meta == NULL) {
376 ERROR("aggregation plugin: meta_data_create failed.");
379 meta_data_add_boolean(vl.meta, "aggregation:created", 1);
381 sstrncpy(vl.host, inst->ident.host, sizeof(vl.host));
382 sstrncpy(vl.plugin, inst->ident.plugin, sizeof(vl.plugin));
383 sstrncpy(vl.type, inst->ident.type, sizeof(vl.type));
384 sstrncpy(vl.type_instance, inst->ident.type_instance,
385 sizeof(vl.type_instance));
387 #define READ_FUNC(func, rate) \
389 if (inst->state_##func != NULL) { \
390 agg_instance_read_func(inst, #func, rate, inst->state_##func, &vl, \
391 inst->ident.plugin_instance, t); \
395 pthread_mutex_lock(&inst->lock);
397 READ_FUNC(num, (gauge_t)inst->num);
399 /* All other aggregations are only defined when there have been any values
402 READ_FUNC(sum, inst->sum);
403 READ_FUNC(average, (inst->sum / ((gauge_t)inst->num)));
404 READ_FUNC(min, inst->min);
405 READ_FUNC(max, inst->max);
406 READ_FUNC(stddev, sqrt((((gauge_t)inst->num) * inst->squares_sum) -
407 (inst->sum * inst->sum)) /
408 ((gauge_t)inst->num));
411 /* Reset internal state. */
414 inst->squares_sum = 0.0;
418 pthread_mutex_unlock(&inst->lock);
420 meta_data_destroy(vl.meta);
424 } /* }}} int agg_instance_read */
426 /* lookup_class_callback_t for utils_vl_lookup */
427 static void *agg_lookup_class_callback(/* {{{ */
428 data_set_t const *ds,
429 value_list_t const *vl,
431 return agg_instance_create(ds, vl, (aggregation_t *)user_class);
432 } /* }}} void *agg_class_callback */
434 /* lookup_obj_callback_t for utils_vl_lookup */
435 static int agg_lookup_obj_callback(data_set_t const *ds, /* {{{ */
436 value_list_t const *vl,
437 __attribute__((unused)) void *user_class,
439 return agg_instance_update((agg_instance_t *)user_obj, ds, vl);
440 } /* }}} int agg_lookup_obj_callback */
442 /* lookup_free_class_callback_t for utils_vl_lookup */
443 static void agg_lookup_free_class_callback(void *user_class) /* {{{ */
445 agg_destroy((aggregation_t *)user_class);
446 } /* }}} void agg_lookup_free_class_callback */
448 /* lookup_free_obj_callback_t for utils_vl_lookup */
449 static void agg_lookup_free_obj_callback(void *user_obj) /* {{{ */
451 agg_instance_destroy((agg_instance_t *)user_obj);
452 } /* }}} void agg_lookup_free_obj_callback */
455 * <Plugin "aggregation">
461 * GroupBy TypeInstance
465 * CalculateAverage true
466 * CalculateMinimum true
467 * CalculateMaximum true
468 * CalculateStddev true
472 static int agg_config_handle_group_by(oconfig_item_t const *ci, /* {{{ */
473 aggregation_t *agg) {
474 for (int i = 0; i < ci->values_num; i++) {
477 if (ci->values[i].type != OCONFIG_TYPE_STRING) {
478 ERROR("aggregation plugin: Argument %i of the \"GroupBy\" option "
484 value = ci->values[i].value.string;
486 if (strcasecmp("Host", value) == 0)
487 agg->group_by |= LU_GROUP_BY_HOST;
488 else if (strcasecmp("Plugin", value) == 0)
489 agg->group_by |= LU_GROUP_BY_PLUGIN;
490 else if (strcasecmp("PluginInstance", value) == 0)
491 agg->group_by |= LU_GROUP_BY_PLUGIN_INSTANCE;
492 else if (strcasecmp("TypeInstance", value) == 0)
493 agg->group_by |= LU_GROUP_BY_TYPE_INSTANCE;
494 else if (strcasecmp("Type", value) == 0)
495 ERROR("aggregation plugin: Grouping by type is not supported.");
497 WARNING("aggregation plugin: The \"%s\" argument to the \"GroupBy\" "
498 "option is invalid and will be ignored.",
500 } /* for (ci->values) */
503 } /* }}} int agg_config_handle_group_by */
505 static int agg_config_aggregation(oconfig_item_t *ci) /* {{{ */
511 agg = calloc(1, sizeof(*agg));
513 ERROR("aggregation plugin: calloc failed.");
517 sstrncpy(agg->ident.host, "/.*/", sizeof(agg->ident.host));
518 sstrncpy(agg->ident.plugin, "/.*/", sizeof(agg->ident.plugin));
519 sstrncpy(agg->ident.plugin_instance, "/.*/",
520 sizeof(agg->ident.plugin_instance));
521 sstrncpy(agg->ident.type, "/.*/", sizeof(agg->ident.type));
522 sstrncpy(agg->ident.type_instance, "/.*/", sizeof(agg->ident.type_instance));
524 for (int i = 0; i < ci->children_num; i++) {
525 oconfig_item_t *child = ci->children + i;
527 if (strcasecmp("Host", child->key) == 0)
528 cf_util_get_string_buffer(child, agg->ident.host,
529 sizeof(agg->ident.host));
530 else if (strcasecmp("Plugin", child->key) == 0)
531 cf_util_get_string_buffer(child, agg->ident.plugin,
532 sizeof(agg->ident.plugin));
533 else if (strcasecmp("PluginInstance", child->key) == 0)
534 cf_util_get_string_buffer(child, agg->ident.plugin_instance,
535 sizeof(agg->ident.plugin_instance));
536 else if (strcasecmp("Type", child->key) == 0)
537 cf_util_get_string_buffer(child, agg->ident.type,
538 sizeof(agg->ident.type));
539 else if (strcasecmp("TypeInstance", child->key) == 0)
540 cf_util_get_string_buffer(child, agg->ident.type_instance,
541 sizeof(agg->ident.type_instance));
542 else if (strcasecmp("SetHost", child->key) == 0)
543 cf_util_get_string(child, &agg->set_host);
544 else if (strcasecmp("SetPlugin", child->key) == 0)
545 cf_util_get_string(child, &agg->set_plugin);
546 else if (strcasecmp("SetPluginInstance", child->key) == 0)
547 cf_util_get_string(child, &agg->set_plugin_instance);
548 else if (strcasecmp("SetTypeInstance", child->key) == 0)
549 cf_util_get_string(child, &agg->set_type_instance);
550 else if (strcasecmp("GroupBy", child->key) == 0)
551 agg_config_handle_group_by(child, agg);
552 else if (strcasecmp("CalculateNum", child->key) == 0)
553 cf_util_get_boolean(child, &agg->calc_num);
554 else if (strcasecmp("CalculateSum", child->key) == 0)
555 cf_util_get_boolean(child, &agg->calc_sum);
556 else if (strcasecmp("CalculateAverage", child->key) == 0)
557 cf_util_get_boolean(child, &agg->calc_average);
558 else if (strcasecmp("CalculateMinimum", child->key) == 0)
559 cf_util_get_boolean(child, &agg->calc_min);
560 else if (strcasecmp("CalculateMaximum", child->key) == 0)
561 cf_util_get_boolean(child, &agg->calc_max);
562 else if (strcasecmp("CalculateStddev", child->key) == 0)
563 cf_util_get_boolean(child, &agg->calc_stddev);
565 WARNING("aggregation plugin: The \"%s\" key is not allowed inside "
566 "<Aggregation /> blocks and will be ignored.",
570 if (agg_is_regex(agg->ident.host))
571 agg->regex_fields |= LU_GROUP_BY_HOST;
572 if (agg_is_regex(agg->ident.plugin))
573 agg->regex_fields |= LU_GROUP_BY_PLUGIN;
574 if (agg_is_regex(agg->ident.plugin_instance))
575 agg->regex_fields |= LU_GROUP_BY_PLUGIN_INSTANCE;
576 if (agg_is_regex(agg->ident.type_instance))
577 agg->regex_fields |= LU_GROUP_BY_TYPE_INSTANCE;
579 /* Sanity checking */
581 if (strcmp("/.*/", agg->ident.type) == 0) /* {{{ */
583 ERROR("aggregation plugin: It appears you did not specify the required "
584 "\"Type\" option in this aggregation. "
585 "(Host \"%s\", Plugin \"%s\", PluginInstance \"%s\", "
586 "Type \"%s\", TypeInstance \"%s\")",
587 agg->ident.host, agg->ident.plugin, agg->ident.plugin_instance,
588 agg->ident.type, agg->ident.type_instance);
590 } else if (strchr(agg->ident.type, '/') != NULL) {
591 ERROR("aggregation plugin: The \"Type\" may not contain the '/' "
592 "character. Especially, it may not be a regex. The current "
598 /* Check that there is at least one regex field without a grouping. {{{ */
599 if ((agg->regex_fields & ~agg->group_by) == 0) {
600 ERROR("aggregation plugin: An aggregation must contain at least one "
601 "wildcard. This is achieved by leaving at least one of the \"Host\", "
602 "\"Plugin\", \"PluginInstance\" and \"TypeInstance\" options blank "
603 "or using a regular expression and not grouping by that field. "
604 "(Host \"%s\", Plugin \"%s\", PluginInstance \"%s\", "
605 "Type \"%s\", TypeInstance \"%s\")",
606 agg->ident.host, agg->ident.plugin, agg->ident.plugin_instance,
607 agg->ident.type, agg->ident.type_instance);
611 /* Check that all grouping fields are regular expressions. {{{ */
612 if (agg->group_by & ~agg->regex_fields) {
613 ERROR("aggregation plugin: Only wildcard fields (fields for which a "
614 "regular expression is configured or which are left blank) can be "
615 "specified in the \"GroupBy\" option. "
616 "(Host \"%s\", Plugin \"%s\", PluginInstance \"%s\", "
617 "Type \"%s\", TypeInstance \"%s\")",
618 agg->ident.host, agg->ident.plugin, agg->ident.plugin_instance,
619 agg->ident.type, agg->ident.type_instance);
623 if (!agg->calc_num && !agg->calc_sum && !agg->calc_average /* {{{ */
624 && !agg->calc_min && !agg->calc_max && !agg->calc_stddev) {
625 ERROR("aggregation plugin: No aggregation function has been specified. "
626 "Without this, I don't know what I should be calculating. "
627 "(Host \"%s\", Plugin \"%s\", PluginInstance \"%s\", "
628 "Type \"%s\", TypeInstance \"%s\")",
629 agg->ident.host, agg->ident.plugin, agg->ident.plugin_instance,
630 agg->ident.type, agg->ident.type_instance);
634 if (!is_valid) /* {{{ */
640 status = lookup_add(lookup, &agg->ident, agg->group_by, agg);
642 ERROR("aggregation plugin: lookup_add failed with status %i.", status);
647 DEBUG("aggregation plugin: Successfully added aggregation: "
648 "(Host \"%s\", Plugin \"%s\", PluginInstance \"%s\", "
649 "Type \"%s\", TypeInstance \"%s\")",
650 agg->ident.host, agg->ident.plugin, agg->ident.plugin_instance,
651 agg->ident.type, agg->ident.type_instance);
653 } /* }}} int agg_config_aggregation */
655 static int agg_config(oconfig_item_t *ci) /* {{{ */
657 pthread_mutex_lock(&agg_instance_list_lock);
659 if (lookup == NULL) {
660 lookup = lookup_create(agg_lookup_class_callback, agg_lookup_obj_callback,
661 agg_lookup_free_class_callback,
662 agg_lookup_free_obj_callback);
663 if (lookup == NULL) {
664 pthread_mutex_unlock(&agg_instance_list_lock);
665 ERROR("aggregation plugin: lookup_create failed.");
670 for (int i = 0; i < ci->children_num; i++) {
671 oconfig_item_t *child = ci->children + i;
673 if (strcasecmp("Aggregation", child->key) == 0)
674 agg_config_aggregation(child);
676 WARNING("aggregation plugin: The \"%s\" key is not allowed inside "
677 "<Plugin aggregation /> blocks and will be ignored.",
681 pthread_mutex_unlock(&agg_instance_list_lock);
684 } /* }}} int agg_config */
686 static int agg_read(void) /* {{{ */
694 pthread_mutex_lock(&agg_instance_list_lock);
696 /* agg_instance_list_head only holds data, after the "write" callback has
697 * been called with a matching value list at least once. So on startup,
698 * there's a race between the aggregations read() and write() callback. If
699 * the read() callback is called first, agg_instance_list_head is NULL and
700 * "success" may be zero. This is expected and should not result in an error.
701 * Therefore we need to handle this case separately. */
702 if (agg_instance_list_head == NULL) {
703 pthread_mutex_unlock(&agg_instance_list_lock);
707 for (agg_instance_t *this = agg_instance_list_head; this != NULL;
711 status = agg_instance_read(this, t);
713 WARNING("aggregation plugin: Reading an aggregation instance "
714 "failed with status %i.",
720 pthread_mutex_unlock(&agg_instance_list_lock);
722 return (success > 0) ? 0 : -1;
723 } /* }}} int agg_read */
725 static int agg_write(data_set_t const *ds, value_list_t const *vl, /* {{{ */
726 __attribute__((unused)) user_data_t *user_data) {
727 _Bool created_by_aggregation = 0;
730 /* Ignore values that were created by the aggregation plugin to avoid weird
732 (void)meta_data_get_boolean(vl->meta, "aggregation:created",
733 &created_by_aggregation);
734 if (created_by_aggregation)
740 status = lookup_search(lookup, ds, vl);
746 } /* }}} int agg_write */
748 void module_register(void) {
749 plugin_register_complex_config("aggregation", agg_config);
750 plugin_register_read("aggregation", agg_read);
751 plugin_register_write("aggregation", agg_write, /* user_data = */ NULL);