mirror of
https://github.com/netdata/netdata.git
synced 2025-05-10 11:50:55 +00:00

Return 503 instead of 400 when netdata hasnt started yet, move struct definitions in .c, swagger update (#5891)
11 lines
317 B
C
11 lines
317 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);
|
|
extern void chartcollectors2json(RRDHOST *host, BUFFER *wb);
|
|
|
|
#endif //NETDATA_API_FORMATTER_CHARTS2JSON_H
|