diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
commit | dcc721a95bef6f0d8e6d8775b8efe33e5aecd562 (patch) | |
tree | 66a2774cd0ee294d019efd71d2544c70f42b2842 /tests/imkafka-backgrounded.sh | |
parent | Initial commit. (diff) | |
download | rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.tar.xz rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.zip |
Adding upstream version 8.2402.0.upstream/8.2402.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/imkafka-backgrounded.sh')
-rwxr-xr-x | tests/imkafka-backgrounded.sh | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/imkafka-backgrounded.sh b/tests/imkafka-backgrounded.sh new file mode 100755 index 0000000..60bf31b --- /dev/null +++ b/tests/imkafka-backgrounded.sh @@ -0,0 +1,61 @@ +#!/bin/bash +# added 2018-10-24 by rgerhards +# This file is part of the rsyslog project, released under ASL 2.0 +. ${srcdir:=.}/diag.sh init +check_command_available kafkacat +export KEEP_KAFKA_RUNNING="YES" + +export TESTMESSAGES=100000 +export RANDTOPIC=$(tr -dc 'a-zA-Z0-9' < /dev/urandom | fold -w 8 | head -n 1) +# Set EXTRA_EXITCHECK to dump kafka/zookeeperlogfiles on failure only. +export EXTRA_EXITCHECK=dumpkafkalogs +export EXTRA_EXIT=kafka + +echo Check and Stop previous instances of kafka/zookeeper +download_kafka +stop_zookeeper +stop_kafka + +echo Create kafka/zookeeper instance and $RANDTOPIC topic +start_zookeeper +start_kafka + +create_kafka_topic $RANDTOPIC '.dep_wrk' '22181' + +export RSYSLOG_DEBUGLOG="log" +generate_conf +add_conf ' +main_queue(queue.timeoutactioncompletion="60000" queue.timeoutshutdown="60000") + +module(load="../plugins/imkafka/.libs/imkafka") +input( type="imkafka" + topic="'$RANDTOPIC'" + broker="localhost:29092" + consumergroup="default" + confParam=[ "compression.codec=none", + "session.timeout.ms=10000", + "socket.timeout.ms=5000", + "socket.keepalive.enable=true", + "reconnect.backoff.jitter.ms=1000", + "enable.partition.eof=false" ] + ) + +template(name="outfmt" type="string" string="%msg:F,58:2%\n") + +if ($msg contains "msgnum:") then { + action( type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt" ) +} +' + +export RSTB_DAEMONIZE="YES" +startup + +injectmsg_kafkacat --wait 1 $TESTMESSAGES -d +shutdown_when_empty +wait_shutdown + +# Delete topic to remove old traces before +delete_kafka_topic $RANDTOPIC '.dep_wrk' '22181' + +seq_check 1 $TESTMESSAGES -d +exit_test |