mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 19:40:41 +01:00
This makes the ES tests more universally available (they should now also support running in containers). It also simplifies the tests as fewer support files are needed.
62 lines
1.7 KiB
Bash
Executable File
62 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
export ES_DOWNLOAD=elasticsearch-6.0.0.tar.gz
|
|
. $srcdir/diag.sh download-elasticsearch
|
|
. $srcdir/diag.sh stop-elasticsearch
|
|
. $srcdir/diag.sh prepare-elasticsearch
|
|
. $srcdir/diag.sh start-elasticsearch
|
|
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/diag.sh es-init
|
|
echo '{ "name" : "foo" }
|
|
{"name": bar"}
|
|
{"name": "baz"}
|
|
{"name": foz"}' > inESData.inputfile
|
|
. $srcdir/diag.sh generate-conf
|
|
. $srcdir/diag.sh add-conf '
|
|
# Note: we must mess up with the template, because we can not
|
|
# instruct ES to put further constraints on the data type and
|
|
# values. So we require integer and make sure it is none.
|
|
template(name="tpl" type="list") {
|
|
constant(value="{\"")
|
|
property(name="$!key") constant(value="\":") property(name="$!obj")
|
|
constant(value="}")
|
|
}
|
|
|
|
module(load="../plugins/omelasticsearch/.libs/omelasticsearch")
|
|
module(load="../plugins/imfile/.libs/imfile")
|
|
ruleset(name="foo") {
|
|
set $!key = "my_obj";
|
|
set $!obj = $msg;
|
|
action(type="omelasticsearch"
|
|
template="tpl"
|
|
searchIndex="rsyslog_testbench"
|
|
searchType="test-type"
|
|
bulkmode="on"
|
|
serverport="19200"
|
|
errorFile="./rsyslog.errorfile"
|
|
erroronly="on"
|
|
interleaved="on")
|
|
}
|
|
|
|
input(type="imfile" File="./inESData.inputfile"
|
|
Tag="foo"
|
|
StateFile="stat-file1"
|
|
Severity="info"
|
|
ruleset="foo")
|
|
'
|
|
. $srcdir/diag.sh startup
|
|
. $srcdir/diag.sh shutdown-when-empty
|
|
. $srcdir/diag.sh wait-shutdown
|
|
rm -f inESData.inputfile
|
|
|
|
python $srcdir/elasticsearch-error-format-check.py errorinterleaved
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
echo "error: Format for error file different! " $?
|
|
exit 1
|
|
fi
|
|
. $srcdir/diag.sh cleanup-elasticsearch
|
|
. $srcdir/diag.sh exit
|