mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-13 03:40:41 +01:00
This fixes the issue that spaces in city names are dropped. However, the fix is more or less a work-around. As it turns out, the libmaxmindb API is not correctly used. In the somewhat longer term, we should fix this. see also https://github.com/maxmind/libmaxminddb/issues/218 closes https://github.com/rsyslog/rsyslog/issues/1650
30 lines
1.1 KiB
Bash
Executable File
30 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# added 2014-11-17 by singh.janmejay
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
echo ===============================================================================
|
|
echo \[mmdb.sh\]: test for mmdb
|
|
# uncomment for debugging support:
|
|
#export RSYSLOG_DEBUG="debug nostdout"
|
|
#export RSYSLOG_DEBUGLOG="log"
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
template(name="outfmt" type="string" string="%$!iplocation%\n")
|
|
|
|
module(load="../plugins/mmdblookup/.libs/mmdblookup")
|
|
module(load="../plugins/mmnormalize/.libs/mmnormalize")
|
|
module(load="../plugins/imptcp/.libs/imptcp")
|
|
input(type="imptcp" port="0" listenPortFileName="'$RSYSLOG_DYNNAME'.tcpflood_port" ruleset="testing")
|
|
|
|
ruleset(name="testing") {
|
|
action(type="mmnormalize" rulebase="'$srcdir'/mmdb.rb")
|
|
action(type="mmdblookup" mmdbfile="'$srcdir'/with_space.mmdb" key="$!ip" fields="city" )
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
|
|
}'
|
|
startup
|
|
tcpflood -m 1 -j "202.106.0.20\ "
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
content_check '{ "city": "Bei ing" }'
|
|
exit_test
|