blob: 2d8cce3108bcd59ea8fc03b164e11c1c72533b66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: GPL-3.0-or-later
#ifndef NETDATA_API_FORMATTER_CHARTS2JSON_H
#define NETDATA_API_FORMATTER_CHARTS2JSON_H
#include "rrd2json.h"
extern void charts2json(RRDHOST *host, BUFFER *wb, int skip_volatile, int show_archived);
extern void chartcollectors2json(RRDHOST *host, BUFFER *wb);
extern const char* get_release_channel();
#endif //NETDATA_API_FORMATTER_CHARTS2JSON_H
|