mirror of
https://github.com/netdata/netdata.git
synced 2025-05-11 12:15:51 +00:00

* split all API formatters in modules * added markdown formatting * updated csv readme * updated csv readme * more documentation * added more documentation * updated documentation * fixed typo * fixed typo
10 lines
300 B
C
10 lines
300 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_FORMATTER_RRDSET2JSON_H
|
|
#define NETDATA_API_FORMATTER_RRDSET2JSON_H
|
|
|
|
#include "rrd2json.h"
|
|
|
|
extern void rrdset2json(RRDSET *st, BUFFER *wb, size_t *dimensions_count, size_t *memory_used);
|
|
|
|
#endif //NETDATA_API_FORMATTER_RRDSET2JSON_H
|