mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 02:50:40 +01:00
Also now permit interactivly running tests without explicitly setting $srcdir. This now works if we are inside ./tests and fails, as before, when we are in a different directory. Detected by shellcheck via CodeFactor.io
30 lines
717 B
Bash
Executable File
30 lines
717 B
Bash
Executable File
#!/bin/bash
|
|
# add 2018-04-19 by Pascal Withopf, released under ASL 2.0
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
$AbortOnUncleanConfig on
|
|
$LocalHostName wtpshutdownall
|
|
$PreserveFQDN on
|
|
|
|
global(
|
|
workDirectory="'${RSYSLOG_DYNNAME}'.spool"
|
|
)
|
|
|
|
module(load="../plugins/mmjsonparse/.libs/mmjsonparse")
|
|
module(load="../plugins/impstats/.libs/impstats" interval="300"
|
|
resetCounters="on" format="cee" ruleset="metrics-impstat" log.syslog="on")
|
|
|
|
ruleset(name="metrics-impstat" queue.type="Direct"){
|
|
action(type="omfile" file="'$RSYSLOG_DYNNAME'.spool/stats.log")
|
|
}
|
|
'
|
|
startup
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
|
|
# This test only checks that rsyslog does not abort
|
|
# so we don't need to check for output.
|
|
|
|
exit_test
|