From d79bbbf943f72495e135eee4afc25723f886592f Mon Sep 17 00:00:00 2001 From: Vladimir Kobal Date: Tue, 25 Feb 2020 21:08:41 +0200 Subject: Add an AWS Kinesis connector to the exporting engine (#8145) * Prepare files for the AWS Kinesis exporting connector * Update the documentation * Rename functions in backends * Include the connector to the Netdata buid * Add initializers and a worker * Add Kinesis specific configuration options * Add a compile time configuration check * Remove the connector data structure * Restore unit tests * Fix the compile-time configuration check * Initialize AWS SDK only once * Don't create an instance for an unknown exporting connector * Separate client and request outcome data for every instance * Fix memory cleanup, document functions * Add unit tests * Update the documentation --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 730d539d4c..7dcb221962 100644 --- a/configure.ac +++ b/configure.ac @@ -445,7 +445,7 @@ if test "${ACLK}" = "yes"; then AC_MSG_CHECKING([if libmosquitto static lib is present]) if test -f "externaldeps/mosquitto/libmosquitto.a"; then HAVE_libmosquitto_a="yes" - else + else HAVE_libmosquitto_a="no" fi AC_MSG_RESULT([${HAVE_libmosquitto_a}]) @@ -1311,6 +1311,7 @@ AC_CONFIG_FILES([ exporting/graphite/Makefile exporting/json/Makefile exporting/opentsdb/Makefile + exporting/aws_kinesis/Makefile exporting/tests/Makefile health/Makefile health/notifications/Makefile -- cgit v1.2.3