X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Futils_rrdcreate.h;h=fdfd6ecb9727f51a6589e551bda125db72018836;hb=4ebf0ce945b6ad1f8852aeb13d86a6f0a6144501;hp=6208a6fcd362e258689a38d711e333ae3f7850df;hpb=b48454eddeaa6d8e0edb9547190cfc509d8abeb4;p=collectd.git diff --git a/src/utils_rrdcreate.h b/src/utils_rrdcreate.h index 6208a6fc..fdfd6ecb 100644 --- a/src/utils_rrdcreate.h +++ b/src/utils_rrdcreate.h @@ -1,6 +1,6 @@ /** * collectd - src/utils_rrdcreate.h - * Copyright (C) 2008 Florian octo Forster + * Copyright (C) 2008-2013 Florian octo Forster * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,15 +16,19 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Authors: - * Florian octo Forster + * Florian octo Forster **/ #ifndef UTILS_RRDCREATE_H #define UTILS_RRDCREATE_H 1 +#include "plugin.h" + +#include + struct rrdcreate_config_s { - int stepsize; + unsigned long stepsize; int heartbeat; int rrarows; double xff; @@ -34,6 +38,8 @@ struct rrdcreate_config_s char **consolidation_functions; size_t consolidation_functions_num; + + _Bool async; }; typedef struct rrdcreate_config_s rrdcreate_config_t;