diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
commit | dcc721a95bef6f0d8e6d8775b8efe33e5aecd562 (patch) | |
tree | 66a2774cd0ee294d019efd71d2544c70f42b2842 /tests/mmnormalize_processing_test1.sh | |
parent | Initial commit. (diff) | |
download | rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.tar.xz rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.zip |
Adding upstream version 8.2402.0.upstream/8.2402.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/mmnormalize_processing_test1.sh')
-rwxr-xr-x | tests/mmnormalize_processing_test1.sh | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/tests/mmnormalize_processing_test1.sh b/tests/mmnormalize_processing_test1.sh new file mode 100755 index 0000000..c421adb --- /dev/null +++ b/tests/mmnormalize_processing_test1.sh @@ -0,0 +1,70 @@ +#!/bin/bash +# add 2016-11-22 by Pascal Withopf, released under ASL 2.0 +. ${srcdir:=.}/diag.sh init +. $srcdir/faketime_common.sh + +export TZ=TEST+02:00 + +generate_conf +add_conf ' +module(load="../plugins/imtcp/.libs/imtcp") +module(load="../plugins/mmnormalize/.libs/mmnormalize") +input(type="imtcp" port="0" listenPortFileName="'$RSYSLOG_DYNNAME'.tcpflood_port" ruleset="ruleset1") + +template(name="t_file_record" type="string" string="%timestamp:::date-rfc3339% %timestamp:::date-rfc3339% %hostname% %$!v_tag% %$!v_msg%\n") +template(name="t_file_path" type="string" string="/sb/logs/incoming/%$year%/%$month%/%$day%/svc_%$!v_svc%/ret_%$!v_ret%/os_%$!v_os%/%fromhost-ip%/r_relay1/%$!v_file:::lowercase%.gz\n") + +template(name="t_fromhost-ip" type="string" string="%fromhost-ip%") +template(name="t_analytics_msg_default" type="string" string="%$!v_analytics_prefix%%rawmsg-after-pri%") +template(name="t_analytics_tag_prefix" type="string" string="%$!v_tag%: ") +template(name="t_analytics_msg_normalized" type="string" string="%timereported% %$!v_hostname% %$!v_analytics_prefix%%$!v_msg%") +template(name="t_analytics_msg_normalized_vc" type="string" string="%timereported:1:6% %$year% %timereported:8:$% %$!v_hostname% %$!v_analytics_prefix%%$!v_msg%") +template(name="t_analytics" type="string" string="[][][%$!v_fromhost-ip%][%timestamp:::date-unixtimestamp%][] %$!v_analytics_msg%\n") + +ruleset(name="ruleset1") { + action(type="mmnormalize" rulebase=`echo $srcdir/testsuites/mmnormalize_processing_tests.rulebase` useRawMsg="on") + if ($!v_file == "") then { + set $!v_file=$!v_tag; + } + action(type="omfile" File=`echo $RSYSLOG_OUT_LOG` template="t_file_record") + action(type="omfile" File=`echo $RSYSLOG_OUT_LOG` template="t_file_path") + + set $!v_forward="PCI"; + + if ($!v_forward contains "PCI") then { + if ($!v_fromhost-ip == "") then { + set $!v_fromhost-ip=exec_template("t_fromhost-ip"); + } + if ($!v_msg == "" or $!v_tag == "") then { + set $!v_analytics_msg=exec_template("t_analytics_msg_default"); + } else { + if ($!v_analytics_prefix == "") then { + set $!v_analytics_prefix=exec_template("t_analytics_tag_prefix"); + } + if ($!v_hostname == "") then { # needed for vCenter logs with custom hostname + set $!v_hostname=exec_template("t_fromhost-ip"); + } + if ($!v_exception == "VC") then { + set $!v_analytics_msg=exec_template("t_analytics_msg_normalized_vc"); + } else { + set $!v_analytics_msg=exec_template("t_analytics_msg_normalized"); + } + } + action(type="omfile" File=`echo $RSYSLOG_OUT_LOG` template="t_analytics") + } +} +' +FAKETIME='2017-03-08 12:53:47' startup +tcpflood -m1 -M "\"<37>1 2017-03-08T12:53:47+02:00 Host1.domain.com Security - - - SER1 M01 WIN [AUF] Wed Mar 08 11:53:48 2017: N\A/Security/Host1.domain.com/Microsoft-Windows-Security-Auditing (5152) - message\"" +shutdown_when_empty +wait_shutdown +echo '2017-03-08T12:53:47+02:00 2017-03-08T12:53:47+02:00 Host1.domain.com Security [AUF] Wed Mar 08 11:53:48 2017: N\A/Security/Host1.domain.com/Microsoft-Windows-Security-Auditing (5152) - message +/sb/logs/incoming/2017/03/08/svc_SER1/ret_M01/os_WIN/127.0.0.1/r_relay1/security.gz +[][][127.0.0.1][1488970427][] Mar 8 12:53:47 127.0.0.1 EvntSLog: [AUF] Wed Mar 08 11:53:48 2017: N\A/Security/Host1.domain.com/Microsoft-Windows-Security-Auditing (5152) - message' | cmp - $RSYSLOG_OUT_LOG +if [ ! $? -eq 0 ]; then + echo "invalid response generated, $RSYSLOG_OUT_LOG is:" + cat $RSYSLOG_OUT_LOG + error_exit 1 +fi; + +exit_test |