mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-13 03:40:41 +01:00
- uses http library to provide http input. user would need to configure an 'endpoint' as input, along with a ruleset, defining how the input should be routed in rsyslog. bugfix, free dynamic buf if created, don't echo to client data. do data framing using newline character. more input options support: - input name - flowcontrol add support for gzip content support, and other options - gzip content - parse linefeeds by default, option to ignore linefeeds add support for gzip content support, and other options - gzip content - parse linefeeds by default, option to ignore linefeeds WIP - misc edits enable port, documentroot module parameter fix overloaded stack issue update tests to use available port instead of hard-coded one. Add 'octet counted framing' support - option is "SupportOctetCountedFraming", currently 'off' by default. update imhttp-getrequest-file.sh test to use $srcdir imhttp - support multi-threaded connection contexts. - tests for large data posts - Add header data as metadata option move mg_start into activatecnf instead of in runinput
47 lines
1.5 KiB
Bash
Executable File
47 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# This is part of the rsyslog testbench, licensed under ASL 2.0
|
|
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
IMHTTP_PORT="$(get_free_port)"
|
|
add_conf '
|
|
#template(name="outfmt" type="string" string="%msg% headers: %metadata%\n")
|
|
template(name="outfmt" type="list") {
|
|
property(name="msg")
|
|
constant(value=" - ")
|
|
constant(value="{ baz: ")
|
|
property(name="$!metadata!httpheaders!baz")
|
|
constant(value=", daddle: ")
|
|
property(name="$!metadata!httpheaders!daddle")
|
|
constant(value=", fiddle: ")
|
|
property(name="$!metadata!httpheaders!fiddle")
|
|
constant(value=" }")
|
|
constant(value=" - ")
|
|
constant(value=" !metadata: ")
|
|
property(name="$!metadata")
|
|
constant(value="\n")
|
|
}
|
|
|
|
module(load="../contrib/imhttp/.libs/imhttp"
|
|
ports="'$IMHTTP_PORT'")
|
|
input(type="imhttp" endpoint="/postrequest" ruleset="ruleset" addmetadata="on")
|
|
ruleset(name="ruleset") {
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
|
|
}
|
|
'
|
|
startup
|
|
NUMMESSAGES=100
|
|
for (( i=1; i<=NUMMESSAGES; i++ ))
|
|
do
|
|
curl -si -H Content-Type:application/json -H "BAZ: skat" -H "daddle: doodle" -H "fiddle: faddle" \
|
|
http://localhost:$IMHTTP_PORT/postrequest -d '[{"foo":"bar","bar":"foo"},{"one":"two","three":"four"}]' &
|
|
done
|
|
sleep 2
|
|
wait_queueempty
|
|
echo "doing shutdown"
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
echo "file name: $RSYSLOG_OUT_LOG"
|
|
content_count_check '[{"foo":"bar","bar":"foo"},{"one":"two","three":"four"}] - { baz: skat, daddle: doodle, fiddle: faddle }' $NUMMESSAGES
|
|
exit_test
|