mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 13:20:41 +01:00
A new parameter allowUnsignedCerts is added to make it possible to connect via HTTPS without the need for certificates. Most tests were changed to use HTTPS.
34 lines
1.1 KiB
Bash
Executable File
34 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# add 2018-12-19 by Pascal Withopf, released under ASL 2.0
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
module(load="../plugins/imtcp/.libs/imtcp")
|
|
module(load="../plugins/omclickhouse/.libs/omclickhouse")
|
|
input(type="imtcp" port="'$TCPFLOOD_PORT'")
|
|
|
|
|
|
template(name="outfmt" option.stdsql="on" type="string" string="INSERT INTO rsyslog.quotation (id, severity, message) VALUES ( 1, '
|
|
add_conf "%syslogseverity%, '%msg%')"
|
|
add_conf '")
|
|
|
|
|
|
:syslogtag, contains, "tag" action(type="omclickhouse" server="localhost"
|
|
port="8443" bulkmode="off"
|
|
user="default" pwd="" template="outfmt")
|
|
'
|
|
|
|
clickhouse-client --query="CREATE TABLE IF NOT EXISTS rsyslog.quotation ( id Int32, severity Int8, message String ) ENGINE = MergeTree() PARTITION BY severity Order By id"
|
|
|
|
startup
|
|
tcpflood -m1 -M "\"<130>Mar 10 01:00:00 172.20.245.8 tag:it's a test\""
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
clickhouse-client --query="SELECT id, severity, message FROM rsyslog.quotation" > $RSYSLOG_OUT_LOG
|
|
|
|
export EXPECTED="1 2 it\\'s a test"
|
|
cmp_exact $RSYSLOG_OUT_LOG
|
|
|
|
clickhouse-client --query="DROP TABLE rsyslog.quotation"
|
|
exit_test
|