summaryrefslogtreecommitdiffstats
path: root/exporting/exporting_engine.h
diff options
context:
space:
mode:
authorthiagoftsm <thiagoftsm@gmail.com>2020-05-26 17:05:56 +0000
committerGitHub <noreply@github.com>2020-05-26 17:05:56 +0000
commit6b091fafd9c3b0197325b3ef751dbdb317048e2b (patch)
treef82e78e1dd42d5bfc5e604d0fa47adb7541b5deb /exporting/exporting_engine.h
parent725b749e9ba91556f8600d7ba2aef56f9545fbcd (diff)
OpenTSDB and TLS (#9068)
Brings TLS to OpenTSDB connector and InfluxDB
Diffstat (limited to 'exporting/exporting_engine.h')
-rw-r--r--exporting/exporting_engine.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/exporting/exporting_engine.h b/exporting/exporting_engine.h
index b82dc9084c..67f9730226 100644
--- a/exporting/exporting_engine.h
+++ b/exporting/exporting_engine.h
@@ -25,6 +25,7 @@ typedef enum exporting_options {
EXPORTING_OPTION_SEND_CONFIGURED_LABELS = (1 << 3),
EXPORTING_OPTION_SEND_AUTOMATIC_LABELS = (1 << 4),
+ EXPORTING_OPTION_USE_TLS = (1 << 5),
EXPORTING_OPTION_SEND_NAMES = (1 << 16)
} EXPORTING_OPTIONS;
@@ -252,6 +253,7 @@ static inline void disable_instance(struct instance *instance)
}
#include "exporting/prometheus/prometheus.h"
+#include "exporting/opentsdb/opentsdb.h"
#if ENABLE_PROMETHEUS_REMOTE_WRITE
#include "exporting/prometheus/remote_write/remote_write.h"
#endif