mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 18:30:42 +01:00
changes some of the test commands to use bash functions includes some small bug fixes to tests where bugs were previously not seen due to different plumbing.
61 lines
1.6 KiB
Bash
Executable File
61 lines
1.6 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
|
|
generate_conf
|
|
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"
|
|
serverport="19200"
|
|
bulkmode="on"
|
|
errorFile="./rsyslog.errorfile"
|
|
erroronly="on")
|
|
}
|
|
|
|
input(type="imfile" File="./inESData.inputfile"
|
|
Tag="foo"
|
|
StateFile="stat-file1"
|
|
Severity="info"
|
|
ruleset="foo")
|
|
'
|
|
startup
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
rm -f inESData.inputfile
|
|
|
|
python $srcdir/elasticsearch-error-format-check.py erroronly
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
echo "error: Format for error file different! " $?
|
|
exit 1
|
|
fi
|
|
. $srcdir/diag.sh cleanup-elasticsearch
|
|
exit_test
|