mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-15 10:30:40 +01:00
see also: commit 246b8d8553b6880146d6c489a28cf4bacea8a199 see also: https://github.com/rsyslog/rsyslog/pull/5050 see also: https://github.com/rsyslog/rsyslog/pull/5052
24 lines
645 B
Bash
Executable File
24 lines
645 B
Bash
Executable File
#!/bin/bash
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
# written 2019-05-10 by Rainer Gerhards
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
template(name="json" type="list" option.jsonf="on") {
|
|
property(outname="empty_null" format="jsonf" name="$!empty" onEmpty="null")
|
|
property(outname="empty_skip" format="jsonf" name="$!empty" onEmpty="skip")
|
|
}
|
|
|
|
set $!val0 = 0;
|
|
set $!val = 42;
|
|
set $!empty = "";
|
|
set $!string = "1.2.3.4";
|
|
action(type="omfile" file="'$RSYSLOG_OUT_LOG'" template="json")
|
|
'
|
|
startup
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
content_check '{"empty_null":null}'
|
|
check_not_present 'empty_skip'
|
|
exit_test
|