From dcc721a95bef6f0d8e6d8775b8efe33e5aecd562 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 18:28:20 +0200 Subject: Adding upstream version 8.2402.0. Signed-off-by: Daniel Baumann --- tests/dynstats_nometric.sh | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 tests/dynstats_nometric.sh (limited to 'tests/dynstats_nometric.sh') diff --git a/tests/dynstats_nometric.sh b/tests/dynstats_nometric.sh new file mode 100755 index 0000000..fef6cda --- /dev/null +++ b/tests/dynstats_nometric.sh @@ -0,0 +1,44 @@ +#!/bin/bash +# added 2015-11-17 by singh.janmejay +# This file is part of the rsyslog project, released under ASL 2.0 +echo =============================================================================== +echo \[dynstats_nometric.sh\]: test for dyn-stats meta-metric behavior with zero-length metric name +. ${srcdir:=.}/diag.sh init +generate_conf +add_conf ' +ruleset(name="stats") { + action(type="omfile" file="'${RSYSLOG_DYNNAME}'.out.stats.log") +} + +module(load="../plugins/impstats/.libs/impstats" interval="1" severity="7" resetCounters="on" Ruleset="stats" bracketing="on") + +template(name="outfmt" type="string" string="%msg% %$.increment_successful%\n") + +dyn_stats(name="msg_stats") + +set $.msg_prefix = field($msg, 32, 2); + +set $.increment_successful = dyn_inc("msg_stats", $.msg_prefix); + +action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt") +' +startup +wait_for_stats_flush ${RSYSLOG_DYNNAME}.out.stats.log +wait_queueempty +rm $srcdir/${RSYSLOG_DYNNAME}.out.stats.log +issue_HUP #reopen stats file +injectmsg_file $srcdir/testsuites/dynstats_empty_input +wait_queueempty +rst_msleep 1100 # wait for stats flush +echo doing shutdown +shutdown_when_empty +echo wait on shutdown +wait_shutdown +first_column_sum_check 's/.*no_metric=//g' 'no_metric=' "${RSYSLOG_DYNNAME}.out.stats.log" 5 +custom_assert_content_missing 'foo' "${RSYSLOG_DYNNAME}.out.stats.log" +custom_assert_content_missing 'bar' "${RSYSLOG_DYNNAME}.out.stats.log" +custom_assert_content_missing 'baz' "${RSYSLOG_DYNNAME}.out.stats.log" +custom_assert_content_missing 'corge' "${RSYSLOG_DYNNAME}.out.stats.log" +custom_content_check 'quux=1' "${RSYSLOG_DYNNAME}.out.stats.log" +custom_content_check 'grault=1' "${RSYSLOG_DYNNAME}.out.stats.log" +exit_test -- cgit v1.2.3