blob: 1f455ec8cb18081d075c955a3293d4a8c707045d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
$IncludeConfig diag-common.conf
template(name="outfmt" type="list") {
property(name="$!usr!msgnum")
constant(value="\n")
}
if $msg contains 'msgnum' then {
set $!usr!msgnum = field($msg, 58, 2);
if $!usr!msgnum < "00005000" then
action(type="omfile" file="./rsyslog.out.log" template="outfmt")
}
|