summaryrefslogtreecommitdiffstats
path: root/exporting/prometheus/remote_write/remote_write_request.h
diff options
context:
space:
mode:
Diffstat (limited to 'exporting/prometheus/remote_write/remote_write_request.h')
-rw-r--r--exporting/prometheus/remote_write/remote_write_request.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/exporting/prometheus/remote_write/remote_write_request.h b/exporting/prometheus/remote_write/remote_write_request.h
deleted file mode 100644
index b25370133..000000000
--- a/exporting/prometheus/remote_write/remote_write_request.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// SPDX-License-Identifier: GPL-3.0-or-later
-
-#ifndef NETDATA_EXPORTING_PROMETHEUS_REMOTE_WRITE_REQUEST_H
-#define NETDATA_EXPORTING_PROMETHEUS_REMOTE_WRITE_REQUEST_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void *init_write_request();
-
-void add_host_info(
- void *write_request_p,
- const char *name, const char *instance, const char *application, const char *version, const int64_t timestamp);
-
-void add_label(void *write_request_p, char *key, char *value);
-
-void add_metric(
- void *write_request_p,
- const char *name, const char *chart, const char *family, const char *dimension,
- const char *instance, const double value, const int64_t timestamp);
-
-void add_variable(
- void *write_request_p, const char *name, const char *instance, const double value, const int64_t timestamp);
-
-size_t get_write_request_size(void *write_request_p);
-
-int pack_and_clear_write_request(void *write_request_p, char *buffer, size_t *size);
-
-int convert_write_request_to_string(
- const char *compressed_write_request,
- size_t compressed_size,
- char *buffer,
- size_t size);
-
-void protocol_buffers_shutdown();
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif //NETDATA_EXPORTING_PROMETHEUS_REMOTE_WRITE_REQUEST_H