mirror of
https://github.com/netdata/netdata.git
synced 2025-04-29 15:10:02 +00:00

Co-authored-by: Markos Fountoulakis <markos.fountoulakis.senior@gmail.com> Co-authored-by: Vladimir Kobal <vlad@prokk.net>
11 lines
465 B
C
11 lines
465 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_FORMATTER_JSON_WRAPPER_H
|
|
#define NETDATA_API_FORMATTER_JSON_WRAPPER_H
|
|
|
|
#include "rrd2json.h"
|
|
|
|
extern void rrdr_json_wrapper_begin(RRDR *r, BUFFER *wb, uint32_t format, RRDR_OPTIONS options, int string_value, RRDDIM *temp_rd, char *chart_key);
|
|
extern void rrdr_json_wrapper_end(RRDR *r, BUFFER *wb, uint32_t format, uint32_t options, int string_value);
|
|
|
|
#endif //NETDATA_API_FORMATTER_JSON_WRAPPER_H
|