blob: 1f851bbb5c3dd42fe769e7768789e13dbb36a48d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
#!/bin/bash
# This is part of the rsyslog testbench, licensed under GPLv3
. ${srcdir:=.}/diag.sh init
export IMFILEINPUTFILES="1"
export IMFILEINPUTFILESSTEPS="5"
#export IMFILEINPUTFILESALL=$(($IMFILEINPUTFILES * $IMFILEINPUTFILESSTEPS))
export IMFILECHECKTIMEOUT="60"
mkdir "$RSYSLOG_DYNNAME.work"
generate_conf
add_conf '
/* Filter out busy debug output, comment out if needed */
global(
debug.whitelist="off"
debug.files=["rainerscript.c", "ratelimit.c", "ruleset.c", "main Q", "msg.c", "../action.c"]
)
global(workDirectory="./'"$RSYSLOG_DYNNAME"'.work")
module( load="../plugins/imfile/.libs/imfile"
mode="inotify"
PollingInterval="1")
input(type="imfile"
File="./'$RSYSLOG_DYNNAME'.input.*/*/testdir/*/file.logfile"
Tag="file:"
Severity="error"
Facility="local7"
addMetadata="on"
)
template(name="outfmt" type="list") {
constant(value="HEADER ")
property(name="msg" format="json")
constant(value=", ")
property(name="$!metadata!filename")
constant(value="\n")
}
if $msg contains "msgnum:" then
action(
type="omfile"
file=`echo $RSYSLOG_OUT_LOG`
template="outfmt"
)
'
# generate input files first. Note that rsyslog processes it as
# soon as it start up (so the file should exist at that point).
for i in $(seq 1 $IMFILEINPUTFILES);
do
echo "Make $RSYSLOG_DYNNAME.input.dir$i"
mkdir $RSYSLOG_DYNNAME.input.dir$i
echo created!
done
# Start rsyslog now before adding more files
startup
# sleep a little to give rsyslog a chance to begin processing
sleep 2
for j in $(seq 1 $IMFILEINPUTFILESSTEPS);
do
echo "Loop Num $j"
for i in $(seq 1 $IMFILEINPUTFILES);
do
echo "Make $RSYSLOG_DYNNAME.input.dir$i/dir$j/testdir"
mkdir $RSYSLOG_DYNNAME.input.dir$i/dir$j
mkdir $RSYSLOG_DYNNAME.input.dir$i/dir$j/testdir
mkdir $RSYSLOG_DYNNAME.input.dir$i/dir$j/testdir/subdir$j
touch $RSYSLOG_DYNNAME.input.dir$i/dir$j/testdir/subdir$j/file.logfile
./inputfilegen -m 1 > $RSYSLOG_DYNNAME.input.dir$i/dir$j/testdir/subdir$j/file.logfile
ls -l $RSYSLOG_DYNNAME.input.dir$i/dir$j/testdir/subdir$j/file.logfile
done
ls -d $RSYSLOG_DYNNAME.input.*
# Check correct amount of input files each time
IMFILEINPUTFILESALL=$((IMFILEINPUTFILES * j))
content_check_with_count "HEADER msgnum:00000000:" $IMFILEINPUTFILESALL $IMFILECHECKTIMEOUT
# Delete all but first!
for i in $(seq 1 $IMFILEINPUTFILES);
do
rm -rf $RSYSLOG_DYNNAME.input.dir$i/dir$j/testdir/subdir$j/file.logfile
rm -rf $RSYSLOG_DYNNAME.input.dir$i/dir$j
done
# Helps in testbench parallel mode.
# Otherwise sometimes directories are not marked deleted in imfile before they get created again.
# This is properly a real issue in imfile when FILE IO is high.
./msleep 1000
done
shutdown_when_empty # shut down rsyslogd when done processing messages
wait_shutdown # we need to wait until rsyslogd is finished!
exit_test
|