fdfd6ecb9727f51a6589e551bda125db72018836
[collectd.git] / src / utils_rrdcreate.h
1 /**
2  * collectd - src/utils_rrdcreate.h
3  * Copyright (C) 2008-2013  Florian octo Forster
4  *
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.
8  *
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.
13  *
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
17  *
18  * Authors:
19  *   Florian octo Forster <octo at collectd.org>
20  **/
21
22 #ifndef UTILS_RRDCREATE_H
23 #define UTILS_RRDCREATE_H 1
24
25 #include "plugin.h"
26
27 #include <stddef.h>
28
29 struct rrdcreate_config_s
30 {
31   unsigned long stepsize;
32   int    heartbeat;
33   int    rrarows;
34   double xff;
35
36   int *timespans;
37   size_t timespans_num;
38
39   char **consolidation_functions;
40   size_t consolidation_functions_num;
41
42   _Bool async;
43 };
44 typedef struct rrdcreate_config_s rrdcreate_config_t;
45
46 int cu_rrd_create_file (const char *filename,
47     const data_set_t *ds, const value_list_t *vl,
48     const rrdcreate_config_t *cfg);
49
50 #endif /* UTILS_RRDCREATE_H */
51
52 /* vim: set sw=2 sts=2 et : */