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.
51 lines
1.4 KiB
Bash
Executable File
51 lines
1.4 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
|
|
curl -H 'Content-Type: application/json' -XPUT localhost:19200/rsyslog_testbench/ -d '{
|
|
"mappings": {
|
|
"test-type": {
|
|
"properties": {
|
|
"msgnum": {
|
|
"type": "integer"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}'
|
|
. $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="string"
|
|
string="{\"msgnum\":\"x%msg:F,58:2%\"}")
|
|
|
|
|
|
module(load="../plugins/omelasticsearch/.libs/omelasticsearch")
|
|
:msg, contains, "msgnum:" action(type="omelasticsearch"
|
|
template="tpl"
|
|
searchIndex="rsyslog_testbench"
|
|
searchType="test-type"
|
|
serverport="19200"
|
|
bulkmode="off"
|
|
errorFile="./rsyslog.errorfile")
|
|
'
|
|
. $srcdir/diag.sh startup
|
|
. $srcdir/diag.sh injectmsg 0 1000
|
|
. $srcdir/diag.sh shutdown-when-empty
|
|
. $srcdir/diag.sh wait-shutdown
|
|
if [ ! -f rsyslog.errorfile ]
|
|
then
|
|
echo "error: error file does not exist!"
|
|
exit 1
|
|
fi
|
|
. $srcdir/diag.sh cleanup-elasticsearch
|
|
. $srcdir/diag.sh exit
|