1 /**
2 * collectd - src/utils_format_json.c
3 * Copyright (C) 2009 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 verplant.org>
20 **/
22 #ifndef UTILS_FORMAT_JSON_H
23 #define UTILS_FORMAT_JSON_H 1
25 #include "collectd.h"
26 #include "plugin.h"
28 int format_json_initialize (char *buffer,
29 size_t *ret_buffer_fill, size_t *ret_buffer_free);
30 int format_json_value_list (char *buffer,
31 size_t *ret_buffer_fill, size_t *ret_buffer_free,
32 const data_set_t *ds, const value_list_t *vl, int store_rates);
33 int format_json_finalize (char *buffer,
34 size_t *ret_buffer_fill, size_t *ret_buffer_free);
36 #endif /* UTILS_FORMAT_JSON_H */