From c9de911aa809c37e0635bdb272fd013af01184b7 Mon Sep 17 00:00:00 2001 From: Denis Shuvalov Date: Mon, 19 Aug 2024 16:45:15 +0200 Subject: [PATCH 1/2] Fix fluentbit config, set explicit host IP --- etc/fluentbit/fluentbit.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/fluentbit/fluentbit.conf b/etc/fluentbit/fluentbit.conf index 1d574064b..178411f83 100644 --- a/etc/fluentbit/fluentbit.conf +++ b/etc/fluentbit/fluentbit.conf @@ -1,6 +1,6 @@ [INPUT] Name tcp - Listen localhost + Listen 127.0.0.1 Port ${FLUENTBIT_LOGS_PORT} Format json Log_Level ${FLUENTBIT_LOG_LEVEL} From 3dc2a14df6a6bdd0eeac7dccb5852d7929d4e9df Mon Sep 17 00:00:00 2001 From: Denis Shuvalov Date: Mon, 19 Aug 2024 17:19:10 +0200 Subject: [PATCH 2/2] Enable Splunk and Newrelic tests --- tests/integration/{disabled_test_newrelic.py => test_newrelic.py} | 0 tests/integration/{disabled_test_splunk.py => test_splunk.py} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename tests/integration/{disabled_test_newrelic.py => test_newrelic.py} (100%) rename tests/integration/{disabled_test_splunk.py => test_splunk.py} (100%) diff --git a/tests/integration/disabled_test_newrelic.py b/tests/integration/test_newrelic.py similarity index 100% rename from tests/integration/disabled_test_newrelic.py rename to tests/integration/test_newrelic.py diff --git a/tests/integration/disabled_test_splunk.py b/tests/integration/test_splunk.py similarity index 100% rename from tests/integration/disabled_test_splunk.py rename to tests/integration/test_splunk.py