rsyslog/tests/testsuites/json_var_cmpr.conf
2015-12-16 18:34:26 +00:00

23 lines
617 B
Plaintext

$IncludeConfig diag-common.conf
module(load="../plugins/mmjsonparse/.libs/mmjsonparse")
module(load="../plugins/imtcp/.libs/imtcp")
input(type="imtcp" port="13514")
# we must make sure the template contains references to the variables
template(name="outfmt" type="string" string="json prop:%$!val% local prop:%$.val% global prop:%$/val%\n")
action(type="mmjsonparse")
set $.val = "123";
set $.rval = "123";
if ($.val == $.rval) then {
set $.val = "def";
}
set $/val = "123";
set $/rval = "123";
if ($/val == $/rval) then {
set $/val = "ghi";
}
action(type="omfile" file="./rsyslog.out.log" template="outfmt")