mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 01:30:42 +01:00
23 lines
617 B
Plaintext
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")
|