mirror of
https://github.com/netdata/netdata.git
synced 2025-04-21 12:20:38 +00:00

* ACLK connection and protocol improvements (#8139) * Adding ACLK retry on connection failure (#8147) * Fixed reconnect issues on the ACLK. (#8163) * Cleaning up ACLK - part 1 (#8167) Co-authored-by: Stelios Fragkakis <52996999+stelfrag@users.noreply.github.com>
10 lines
319 B
C
10 lines
319 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, int skip_volatile);
|
|
|
|
#endif //NETDATA_API_FORMATTER_RRDSET2JSON_H
|