mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-18 09:50:43 +01:00
22 lines
826 B
Bash
Executable File
22 lines
826 B
Bash
Executable File
#!/bin/bash
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/diag.sh generate-conf
|
|
. $srcdir/diag.sh add-conf '
|
|
module(load="../plugins/imtcp/.libs/imtcp")
|
|
input(type="imtcp" port="13514")
|
|
|
|
template(name="outfmt" type="string"
|
|
string="%msg:F,58:2%,%msg:F,58:3%,%msg:F,58:4%\n")
|
|
:msg, contains, "msgnum:" action(type="omfile" template="outfmt"
|
|
zipLevel="6" ioBufferSize="256k" flushOnTXEnd="off"
|
|
file="rsyslog.out.log")
|
|
'
|
|
. $srcdir/diag.sh startup
|
|
. $srcdir/diag.sh tcpflood -m2500 -P129
|
|
. $srcdir/diag.sh tcpflood -i2500 -m2500 -P129
|
|
. $srcdir/diag.sh shutdown-when-empty # shut down rsyslogd when done processing messages
|
|
. $srcdir/diag.sh wait-shutdown # and wait for it to terminate
|
|
. $srcdir/diag.sh gzip-seq-check 0 4999
|
|
. $srcdir/diag.sh exit
|