Merge branch 'collectd-5.7' into collectd-5.8
[collectd.git] / src / utils_format_graphite.h
1 /**
2  * collectd - src/utils_format_graphite.h
3  * Copyright (C) 2012  Thomas Meson
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  * Author:
19  *   Thomas Meson <zllak at hycik.org>
20  **/
21
22 #ifndef UTILS_FORMAT_GRAPHITE_H
23 #define UTILS_FORMAT_GRAPHITE_H 1
24
25 #include "collectd.h"
26
27 #include "plugin.h"
28
29 #define GRAPHITE_STORE_RATES 0x01
30 #define GRAPHITE_SEPARATE_INSTANCES 0x02
31 #define GRAPHITE_ALWAYS_APPEND_DS 0x04
32 #define GRAPHITE_DROP_DUPE_FIELDS 0x08
33 #define GRAPHITE_PRESERVE_SEPARATOR 0x10
34
35 int format_graphite(char *buffer, size_t buffer_size, const data_set_t *ds,
36                     const value_list_t *vl, const char *prefix,
37                     const char *postfix, const char escape_char,
38                     unsigned int flags);
39
40 #endif /* UTILS_FORMAT_GRAPHITE_H */