mirror of
https://github.com/netdata/netdata.git
synced 2025-05-04 09:10:31 +00:00

* Implemented collector metadata logging * Added persistent GUIDs for charts and dimensions * Added metadata log replay and automatic compaction * Added detection of charts with no active collector (archived) * Added new endpoint to report archived charts via `/api/v1/archivedcharts` * Added support for collector metadata update Co-authored-by: Markos Fountoulakis <44345837+mfundul@users.noreply.github.com>
11 lines
355 B
C
11 lines
355 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);
|
|
|
|
#endif //NETDATA_API_FORMATTER_CHARTS2JSON_H
|