mirror of
https://github.com/netdata/netdata.git
synced 2025-05-10 03:40:55 +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
11 lines
323 B
C
11 lines
323 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef NETDATA_API_ALLMETRICS_H
|
|
#define NETDATA_API_ALLMETRICS_H
|
|
|
|
#include "web/api/formatters/rrd2json.h"
|
|
#include "shell/allmetrics_shell.h"
|
|
|
|
extern int web_client_api_request_v1_allmetrics(RRDHOST *host, struct web_client *w, char *url);
|
|
|
|
#endif //NETDATA_API_ALLMETRICS_H
|