mirror of
https://github.com/netdata/netdata.git
synced 2025-05-09 03:20:23 +00:00

* health_connection: http_error_pattern This commit brings an unique pattern for the Netdata webserver errors, now Netdata uses define for all web error * http_error_pattern: API v1 This PR also brings the pattern for the web_api_v1.c
12 lines
358 B
C
12 lines
358 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"
|
|
#include "web/server/web_client.h"
|
|
|
|
extern int web_client_api_request_v1_allmetrics(RRDHOST *host, struct web_client *w, char *url);
|
|
|
|
#endif //NETDATA_API_ALLMETRICS_H
|