summaryrefslogtreecommitdiffstats
path: root/exporting/opentsdb/opentsdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'exporting/opentsdb/opentsdb.h')
-rw-r--r--exporting/opentsdb/opentsdb.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/exporting/opentsdb/opentsdb.h b/exporting/opentsdb/opentsdb.h
new file mode 100644
index 0000000000..929f49b1bb
--- /dev/null
+++ b/exporting/opentsdb/opentsdb.h
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#ifndef NETDATA_EXPORTING_OPENTSDB_H
+#define NETDATA_EXPORTING_OPENTSDB_H
+
+#include "exporting/exporting_engine.h"
+
+int init_opentsdb_connector(struct connector *connector);
+int init_opentsdb_telnet_instance(struct instance *instance);
+int init_opentsdb_http_instance(struct instance *instance);
+
+int format_dimension_collected_opentsdb_telnet(struct instance *instance, RRDDIM *rd);
+int format_dimension_stored_opentsdb_telnet(struct instance *instance, RRDDIM *rd);
+
+int format_dimension_collected_opentsdb_http(struct instance *instance, RRDDIM *rd);
+int format_dimension_stored_opentsdb_http(struct instance *instance, RRDDIM *rd);
+
+#endif //NETDATA_EXPORTING_OPENTSDB_H