aggregation plugin: Handle a start-up condition gracefully.
[collectd.git] / src / aggregation.c
1 /**
2  * collectd - src/aggregation.c
3  * Copyright (C) 2012       Florian Forster
4  *
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:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
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.
22  *
23  * Authors:
24  *   Florian Forster <octo at collectd.org>
25  **/
26
27 #include "collectd.h"
28 #include "plugin.h"
29 #include "common.h"
30 #include "configfile.h"
31 #include "meta_data.h"
32 #include "utils_cache.h" /* for uc_get_rate() */
33 #include "utils_vl_lookup.h"
34
35 #include <pthread.h>
36
37 struct aggregation_s /* {{{ */
38 {
39   identifier_t ident;
40
41   _Bool calc_num;
42   _Bool calc_sum;
43   _Bool calc_average;
44   _Bool calc_min;
45   _Bool calc_max;
46   _Bool calc_stddev;
47 }; /* }}} */
48 typedef struct aggregation_s aggregation_t;
49
50 struct agg_instance_s;
51 typedef struct agg_instance_s agg_instance_t;
52 struct agg_instance_s /* {{{ */
53 {
54   pthread_mutex_t lock;
55   identifier_t ident;
56
57   int ds_type;
58
59   derive_t num;
60   gauge_t sum;
61   gauge_t squares_sum;
62
63   gauge_t min;
64   gauge_t max;
65
66   rate_to_value_state_t *state_num;
67   rate_to_value_state_t *state_sum;
68   rate_to_value_state_t *state_average;
69   rate_to_value_state_t *state_min;
70   rate_to_value_state_t *state_max;
71   rate_to_value_state_t *state_stddev;
72
73   agg_instance_t *next;
74 }; /* }}} */
75
76 static lookup_t *lookup = NULL;
77
78 static pthread_mutex_t agg_instance_list_lock = PTHREAD_MUTEX_INITIALIZER;
79 static agg_instance_t *agg_instance_list_head = NULL;
80
81 static void agg_destroy (aggregation_t *agg) /* {{{ */
82 {
83   sfree (agg);
84 } /* }}} void agg_destroy */
85
86 /* Frees all dynamically allocated memory within the instance. */
87 static void agg_instance_destroy (agg_instance_t *inst) /* {{{ */
88 {
89   if (inst == NULL)
90     return;
91
92   /* Remove this instance from the global list of instances. */
93   pthread_mutex_lock (&agg_instance_list_lock);
94   if (agg_instance_list_head == inst)
95     agg_instance_list_head = inst->next;
96   else if (agg_instance_list_head != NULL)
97   {
98     agg_instance_t *prev = agg_instance_list_head;
99     while ((prev != NULL) && (prev->next != inst))
100       prev = prev->next;
101     if (prev != NULL)
102       prev->next = inst->next;
103   }
104   pthread_mutex_unlock (&agg_instance_list_lock);
105
106   sfree (inst->state_num);
107   sfree (inst->state_sum);
108   sfree (inst->state_average);
109   sfree (inst->state_min);
110   sfree (inst->state_max);
111   sfree (inst->state_stddev);
112
113   memset (inst, 0, sizeof (*inst));
114   inst->ds_type = -1;
115   inst->min = NAN;
116   inst->max = NAN;
117 } /* }}} void agg_instance_destroy */
118
119 /* Create a new aggregation instance. */
120 static agg_instance_t *agg_instance_create (data_set_t const *ds, /* {{{ */
121     value_list_t const *vl, aggregation_t *agg)
122 {
123   agg_instance_t *inst;
124
125   DEBUG ("aggregation plugin: Creating new instance.");
126
127   inst = malloc (sizeof (*inst));
128   if (inst == NULL)
129   {
130     ERROR ("aggregation plugin: malloc() failed.");
131     return (NULL);
132   }
133   memset (inst, 0, sizeof (*inst));
134   pthread_mutex_init (&inst->lock, /* attr = */ NULL);
135
136   inst->ds_type = ds->ds[0].type;
137
138 #define COPY_FIELD(fld) do { \
139   sstrncpy (inst->ident.fld, \
140       LU_IS_ANY (agg->ident.fld) ? vl->fld : agg->ident.fld, \
141       sizeof (inst->ident.fld)); \
142 } while (0)
143
144   COPY_FIELD (host);
145   COPY_FIELD (plugin);
146   COPY_FIELD (plugin_instance);
147   COPY_FIELD (type);
148   COPY_FIELD (type_instance);
149
150 #undef COPY_FIELD
151
152   inst->min = NAN;
153   inst->max = NAN;
154
155 #define INIT_STATE(field) do { \
156   inst->state_ ## field = NULL; \
157   if (agg->calc_ ## field) { \
158     inst->state_ ## field = malloc (sizeof (*inst->state_ ## field)); \
159     if (inst->state_ ## field == NULL) { \
160       agg_instance_destroy (inst); \
161       ERROR ("aggregation plugin: malloc() failed."); \
162       return (NULL); \
163     } \
164     memset (inst->state_ ## field, 0, sizeof (*inst->state_ ## field)); \
165   } \
166 } while (0)
167
168   INIT_STATE (num);
169   INIT_STATE (sum);
170   INIT_STATE (average);
171   INIT_STATE (min);
172   INIT_STATE (max);
173   INIT_STATE (stddev);
174
175 #undef INIT_STATE
176
177   pthread_mutex_lock (&agg_instance_list_lock);
178   inst->next = agg_instance_list_head;
179   agg_instance_list_head = inst;
180   pthread_mutex_unlock (&agg_instance_list_lock);
181
182   return (inst);
183 } /* }}} agg_instance_t *agg_instance_create */
184
185 /* Update the num, sum, min, max, ... fields of the aggregation instance, if
186  * the rate of the value list is available. Value lists with more than one data
187  * source are not supported and will return an error. Returns zero on success
188  * and non-zero otherwise. */
189 static int agg_instance_update (agg_instance_t *inst, /* {{{ */
190     data_set_t const *ds, value_list_t const *vl)
191 {
192   gauge_t *rate;
193
194   if (ds->ds_num != 1)
195     return (-1);
196
197   rate = uc_get_rate (ds, vl);
198   if (rate == NULL)
199   {
200     ERROR ("aggregation plugin: uc_get_rate() failed.");
201     return (-1);
202   }
203
204   if (isnan (rate[0]))
205   {
206     sfree (rate);
207     return (0);
208   }
209
210   pthread_mutex_lock (&inst->lock);
211
212   inst->num++;
213   inst->sum += rate[0];
214   inst->squares_sum += (rate[0] * rate[0]);
215
216   if (isnan (inst->min) || (inst->min > rate[0]))
217     inst->min = rate[0];
218   if (isnan (inst->max) || (inst->max < rate[0]))
219     inst->max = rate[0];
220
221   pthread_mutex_unlock (&inst->lock);
222
223   sfree (rate);
224   return (0);
225 } /* }}} int agg_instance_update */
226
227 static int agg_instance_read_func (agg_instance_t *inst, /* {{{ */
228   char const *func, gauge_t rate, rate_to_value_state_t *state,
229   value_list_t *vl, char const *pi_prefix, cdtime_t t)
230 {
231   value_t v;
232   int status;
233
234   if (pi_prefix[0] != 0)
235     ssnprintf (vl->plugin_instance, sizeof (vl->plugin_instance), "%s-%s",
236         pi_prefix, func);
237   else
238     sstrncpy (vl->plugin_instance, func, sizeof (vl->plugin_instance));
239
240   memset (&v, 0, sizeof (v));
241   status = rate_to_value (&v, rate, state, inst->ds_type, t);
242   if (status != 0)
243   {
244     WARNING ("aggregation plugin: rate_to_value failed with status %i.",
245         status);
246     return (-1);
247   }
248
249   vl->values = &v;
250   vl->values_len = 1;
251
252   plugin_dispatch_values_secure (vl);
253
254   vl->values = NULL;
255   vl->values_len = 0;
256
257   return (0);
258 } /* }}} int agg_instance_read_func */
259
260 static int agg_instance_read (agg_instance_t *inst, cdtime_t t) /* {{{ */
261 {
262   value_list_t vl = VALUE_LIST_INIT;
263   char pi_prefix[DATA_MAX_NAME_LEN];
264
265   /* Pre-set all the fields in the value list that will not change per
266    * aggregation type (sum, average, ...). The struct will be re-used and must
267    * therefore be dispatched using the "secure" function. */
268
269   vl.time = t;
270   vl.interval = 0;
271
272   vl.meta = meta_data_create ();
273   if (vl.meta == NULL)
274   {
275     ERROR ("aggregation plugin: meta_data_create failed.");
276     return (-1);
277   }
278   meta_data_add_boolean (vl.meta, "aggregation:created", 1);
279
280   if (LU_IS_ALL (inst->ident.host))
281     sstrncpy (vl.host, "global", sizeof (vl.host));
282   else
283     sstrncpy (vl.host, inst->ident.host, sizeof (vl.host));
284
285   sstrncpy (vl.plugin, "aggregation", sizeof (vl.plugin));
286
287   if (LU_IS_ALL (inst->ident.plugin))
288   {
289     if (LU_IS_ALL (inst->ident.plugin_instance))
290       sstrncpy (pi_prefix, "", sizeof (pi_prefix));
291     else
292       sstrncpy (pi_prefix, inst->ident.plugin_instance, sizeof (pi_prefix));
293   }
294   else
295   {
296     if (LU_IS_ALL (inst->ident.plugin_instance))
297       sstrncpy (pi_prefix, inst->ident.plugin, sizeof (pi_prefix));
298     else
299       ssnprintf (pi_prefix, sizeof (pi_prefix),
300           "%s-%s", inst->ident.plugin, inst->ident.plugin_instance);
301   }
302
303   sstrncpy (vl.type, inst->ident.type, sizeof (vl.type));
304
305   if (!LU_IS_ALL (inst->ident.type_instance))
306     sstrncpy (vl.type_instance, inst->ident.type_instance,
307         sizeof (vl.type_instance));
308
309 #define READ_FUNC(func, rate) do { \
310   if (inst->state_ ## func != NULL) { \
311     agg_instance_read_func (inst, #func, rate, \
312         inst->state_ ## func, &vl, pi_prefix, t); \
313   } \
314 } while (0)
315
316   pthread_mutex_lock (&inst->lock);
317
318   READ_FUNC (num, (gauge_t) inst->num);
319
320   /* All other aggregations are only defined when there have been any values
321    * at all. */
322   if (inst->num > 0)
323   {
324     READ_FUNC (sum, inst->sum);
325     READ_FUNC (average, (inst->sum / ((gauge_t) inst->num)));
326     READ_FUNC (min, inst->min);
327     READ_FUNC (max, inst->max);
328     READ_FUNC (stddev, sqrt((((gauge_t) inst->num) * inst->squares_sum)
329           - (inst->sum * inst->sum)) / ((gauge_t) inst->num));
330   }
331
332   /* Reset internal state. */
333   inst->num = 0;
334   inst->sum = 0.0;
335   inst->squares_sum = 0.0;
336   inst->min = NAN;
337   inst->max = NAN;
338
339   pthread_mutex_unlock (&inst->lock);
340
341   meta_data_destroy (vl.meta);
342   vl.meta = NULL;
343
344   return (0);
345 } /* }}} int agg_instance_read */
346
347 /* lookup_class_callback_t for utils_vl_lookup */
348 static void *agg_lookup_class_callback ( /* {{{ */
349     __attribute__((unused)) data_set_t const *ds,
350     value_list_t const *vl, void *user_class)
351 {
352   return (agg_instance_create (ds, vl, (aggregation_t *) user_class));
353 } /* }}} void *agg_class_callback */
354
355 /* lookup_obj_callback_t for utils_vl_lookup */
356 static int agg_lookup_obj_callback (data_set_t const *ds, /* {{{ */
357     value_list_t const *vl,
358     __attribute__((unused)) void *user_class,
359     void *user_obj)
360 {
361   return (agg_instance_update ((agg_instance_t *) user_obj, ds, vl));
362 } /* }}} int agg_lookup_obj_callback */
363
364 /* lookup_free_class_callback_t for utils_vl_lookup */
365 static void agg_lookup_free_class_callback (void *user_class) /* {{{ */
366 {
367   agg_destroy ((aggregation_t *) user_class);
368 } /* }}} void agg_lookup_free_class_callback */
369
370 /* lookup_free_obj_callback_t for utils_vl_lookup */
371 static void agg_lookup_free_obj_callback (void *user_obj) /* {{{ */
372 {
373   agg_instance_destroy ((agg_instance_t *) user_obj);
374 } /* }}} void agg_lookup_free_obj_callback */
375
376 /*
377  * <Plugin "aggregation">
378  *   <Aggregation>
379  *     Plugin "cpu"
380  *     Type "cpu"
381  *
382  *     GroupBy Host
383  *     GroupBy TypeInstance
384  *
385  *     CalculateNum true
386  *     CalculateSum true
387  *     CalculateAverage true
388  *     CalculateMinimum true
389  *     CalculateMaximum true
390  *     CalculateStddev true
391  *   </Aggregation>
392  * </Plugin>
393  */
394 static int agg_config_handle_group_by (oconfig_item_t const *ci, /* {{{ */
395     aggregation_t *agg)
396 {
397   int i;
398
399   for (i = 0; i < ci->values_num; i++)
400   {
401     char const *value;
402
403     if (ci->values[i].type != OCONFIG_TYPE_STRING)
404     {
405       ERROR ("aggregation plugin: Argument %i of the \"GroupBy\" option "
406           "is not a string.", i + 1);
407       continue;
408     }
409
410     value = ci->values[i].value.string;
411
412     if (strcasecmp ("Host", value) == 0)
413       sstrncpy (agg->ident.host, LU_ANY, sizeof (agg->ident.host));
414     else if (strcasecmp ("Plugin", value) == 0)
415       sstrncpy (agg->ident.plugin, LU_ANY, sizeof (agg->ident.plugin));
416     else if (strcasecmp ("PluginInstance", value) == 0)
417       sstrncpy (agg->ident.plugin_instance, LU_ANY,
418           sizeof (agg->ident.plugin_instance));
419     else if (strcasecmp ("TypeInstance", value) == 0)
420       sstrncpy (agg->ident.type_instance, LU_ANY, sizeof (agg->ident.type_instance));
421     else if (strcasecmp ("Type", value) == 0)
422       ERROR ("aggregation plugin: Grouping by type is not supported.");
423     else
424       WARNING ("aggregation plugin: The \"%s\" argument to the \"GroupBy\" "
425           "option is invalid and will be ignored.", value);
426   } /* for (ci->values) */
427
428   return (0);
429 } /* }}} int agg_config_handle_group_by */
430
431 static int agg_config_aggregation (oconfig_item_t *ci) /* {{{ */
432 {
433   aggregation_t *agg;
434   _Bool is_valid;
435   int status;
436   int i;
437
438   agg = malloc (sizeof (*agg));
439   if (agg == NULL)
440   {
441     ERROR ("aggregation plugin: malloc failed.");
442     return (-1);
443   }
444   memset (agg, 0, sizeof (*agg));
445
446   sstrncpy (agg->ident.host, LU_ALL, sizeof (agg->ident.host));
447   sstrncpy (agg->ident.plugin, LU_ALL, sizeof (agg->ident.plugin));
448   sstrncpy (agg->ident.plugin_instance, LU_ALL,
449       sizeof (agg->ident.plugin_instance));
450   sstrncpy (agg->ident.type, LU_ALL, sizeof (agg->ident.type));
451   sstrncpy (agg->ident.type_instance, LU_ALL,
452       sizeof (agg->ident.type_instance));
453
454   for (i = 0; i < ci->children_num; i++)
455   {
456     oconfig_item_t *child = ci->children + i;
457
458     if (strcasecmp ("Host", child->key) == 0)
459       cf_util_get_string_buffer (child, agg->ident.host,
460           sizeof (agg->ident.host));
461     else if (strcasecmp ("Plugin", child->key) == 0)
462       cf_util_get_string_buffer (child, agg->ident.plugin,
463           sizeof (agg->ident.plugin));
464     else if (strcasecmp ("PluginInstance", child->key) == 0)
465       cf_util_get_string_buffer (child, agg->ident.plugin_instance,
466           sizeof (agg->ident.plugin_instance));
467     else if (strcasecmp ("Type", child->key) == 0)
468       cf_util_get_string_buffer (child, agg->ident.type,
469           sizeof (agg->ident.type));
470     else if (strcasecmp ("TypeInstance", child->key) == 0)
471       cf_util_get_string_buffer (child, agg->ident.type_instance,
472           sizeof (agg->ident.type_instance));
473     else if (strcasecmp ("GroupBy", child->key) == 0)
474       agg_config_handle_group_by (child, agg);
475     else if (strcasecmp ("CalculateNum", child->key) == 0)
476       cf_util_get_boolean (child, &agg->calc_num);
477     else if (strcasecmp ("CalculateSum", child->key) == 0)
478       cf_util_get_boolean (child, &agg->calc_sum);
479     else if (strcasecmp ("CalculateAverage", child->key) == 0)
480       cf_util_get_boolean (child, &agg->calc_average);
481     else if (strcasecmp ("CalculateMinimum", child->key) == 0)
482       cf_util_get_boolean (child, &agg->calc_min);
483     else if (strcasecmp ("CalculateMaximum", child->key) == 0)
484       cf_util_get_boolean (child, &agg->calc_max);
485     else if (strcasecmp ("CalculateStddev", child->key) == 0)
486       cf_util_get_boolean (child, &agg->calc_stddev);
487     else
488       WARNING ("aggregation plugin: The \"%s\" key is not allowed inside "
489           "<Aggregation /> blocks and will be ignored.", child->key);
490   }
491
492   /* Sanity checking */
493   is_valid = 1;
494   if (LU_IS_ALL (agg->ident.type)) /* {{{ */
495   {
496     ERROR ("aggregation plugin: It appears you did not specify the required "
497         "\"Type\" option in this aggregation. "
498         "(Host \"%s\", Plugin \"%s\", PluginInstance \"%s\", "
499         "Type \"%s\", TypeInstance \"%s\")",
500         agg->ident.host, agg->ident.plugin, agg->ident.plugin_instance,
501         agg->ident.type, agg->ident.type_instance);
502     is_valid = 0;
503   }
504   else if (strchr (agg->ident.type, '/') != NULL)
505   {
506     ERROR ("aggregation plugin: The \"Type\" may not contain the '/' "
507         "character. Especially, it may not be a wildcard. The current "
508         "value is \"%s\".", agg->ident.type);
509     is_valid = 0;
510   } /* }}} */
511
512   if (!LU_IS_ALL (agg->ident.host) /* {{{ */
513       && !LU_IS_ALL (agg->ident.plugin)
514       && !LU_IS_ALL (agg->ident.plugin_instance)
515       && !LU_IS_ALL (agg->ident.type_instance))
516   {
517     ERROR ("aggregation plugin: An aggregation must contain at least one "
518         "wildcard. This is achieved by leaving at least one of the \"Host\", "
519         "\"Plugin\", \"PluginInstance\" and \"TypeInstance\" options blank "
520         "and not grouping by that field. "
521         "(Host \"%s\", Plugin \"%s\", PluginInstance \"%s\", "
522         "Type \"%s\", TypeInstance \"%s\")",
523         agg->ident.host, agg->ident.plugin, agg->ident.plugin_instance,
524         agg->ident.type, agg->ident.type_instance);
525     is_valid = 0;
526   } /* }}} */
527
528   if (!agg->calc_num && !agg->calc_sum && !agg->calc_average /* {{{ */
529       && !agg->calc_min && !agg->calc_max && !agg->calc_stddev)
530   {
531     ERROR ("aggregation plugin: No aggregation function has been specified. "
532         "Without this, I don't know what I should be calculating. "
533         "(Host \"%s\", Plugin \"%s\", PluginInstance \"%s\", "
534         "Type \"%s\", TypeInstance \"%s\")",
535         agg->ident.host, agg->ident.plugin, agg->ident.plugin_instance,
536         agg->ident.type, agg->ident.type_instance);
537     is_valid = 0;
538   } /* }}} */
539
540   if (!is_valid) /* {{{ */
541   {
542     sfree (agg);
543     return (-1);
544   } /* }}} */
545
546   status = lookup_add (lookup, &agg->ident, agg);
547   if (status != 0)
548   {
549     ERROR ("aggregation plugin: lookup_add failed with status %i.", status);
550     sfree (agg);
551     return (-1);
552   }
553
554   DEBUG ("aggregation plugin: Successfully added aggregation: "
555       "(Host \"%s\", Plugin \"%s\", PluginInstance \"%s\", "
556       "Type \"%s\", TypeInstance \"%s\")",
557       agg->ident.host, agg->ident.plugin, agg->ident.plugin_instance,
558       agg->ident.type, agg->ident.type_instance);
559   return (0);
560 } /* }}} int agg_config_aggregation */
561
562 static int agg_config (oconfig_item_t *ci) /* {{{ */
563 {
564   int i;
565
566   pthread_mutex_lock (&agg_instance_list_lock);
567
568   if (lookup == NULL)
569   {
570     lookup = lookup_create (agg_lookup_class_callback,
571         agg_lookup_obj_callback,
572         agg_lookup_free_class_callback,
573         agg_lookup_free_obj_callback);
574     if (lookup == NULL)
575     {
576       pthread_mutex_unlock (&agg_instance_list_lock);
577       ERROR ("aggregation plugin: lookup_create failed.");
578       return (-1);
579     }
580   }
581
582   for (i = 0; i < ci->children_num; i++)
583   {
584     oconfig_item_t *child = ci->children + i;
585
586     if (strcasecmp ("Aggregation", child->key) == 0)
587       agg_config_aggregation (child);
588     else
589       WARNING ("aggregation plugin: The \"%s\" key is not allowed inside "
590           "<Plugin aggregation /> blocks and will be ignored.", child->key);
591   }
592
593   pthread_mutex_unlock (&agg_instance_list_lock);
594
595   return (0);
596 } /* }}} int agg_config */
597
598 static int agg_read (void) /* {{{ */
599 {
600   agg_instance_t *this;
601   cdtime_t t;
602   int success;
603
604   t = cdtime ();
605   success = 0;
606
607   pthread_mutex_lock (&agg_instance_list_lock);
608
609   /* agg_instance_list_head only holds data, after the "write" callback has
610    * been called with a matching value list at least once. So on startup,
611    * there's a race between the aggregations read() and write() callback. If
612    * the read() callback is called first, agg_instance_list_head is NULL and
613    * "success" may be zero. This is expected and should not result in an error.
614    * Therefore we need to handle this case separately. */
615   if (agg_instance_list_head == NULL)
616   {
617     pthread_mutex_unlock (&agg_instance_list_lock);
618     return (0);
619   }
620
621   for (this = agg_instance_list_head; this != NULL; this = this->next)
622   {
623     int status;
624
625     status = agg_instance_read (this, t);
626     if (status != 0)
627       WARNING ("aggregation plugin: Reading an aggregation instance "
628           "failed with status %i.", status);
629     else
630       success++;
631   }
632
633   pthread_mutex_unlock (&agg_instance_list_lock);
634
635   return ((success > 0) ? 0 : -1);
636 } /* }}} int agg_read */
637
638 static int agg_write (data_set_t const *ds, value_list_t const *vl, /* {{{ */
639     __attribute__((unused)) user_data_t *user_data)
640 {
641   _Bool created_by_aggregation = 0;
642   int status;
643
644   /* Ignore values that were created by the aggregation plugin to avoid weird
645    * effects. */
646   (void) meta_data_get_boolean (vl->meta, "aggregation:created",
647       &created_by_aggregation);
648   if (created_by_aggregation)
649     return (0);
650
651   if (lookup == NULL)
652     status = ENOENT;
653   else
654   {
655     status = lookup_search (lookup, ds, vl);
656     if (status > 0)
657       status = 0;
658   }
659
660   return (status);
661 } /* }}} int agg_write */
662
663 void module_register (void)
664 {
665   plugin_register_complex_config ("aggregation", agg_config);
666   plugin_register_read ("aggregation", agg_read);
667   plugin_register_write ("aggregation", agg_write, /* user_data = */ NULL);
668 }
669
670 /* vim: set sw=2 sts=2 tw=78 et fdm=marker : */