mirror of
https://github.com/netdata/netdata.git
synced 2025-04-20 20:10:08 +00:00
12 lines
397 B
C
12 lines
397 B
C
// 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
|