mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 20:50:42 +01:00
42 lines
2.3 KiB
Bash
Executable File
42 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# added 2016-04-13 by singh.janmejay
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
|
|
uname
|
|
if [ `uname` = "FreeBSD" ] ; then
|
|
echo "This test currently does not work on FreeBSD."
|
|
exit 77
|
|
fi
|
|
|
|
echo ===============================================================================
|
|
echo \[dynstats_prevent_premature_eviction.sh\]: test for ensuring metrics are not evicted before unused-ttl
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/diag.sh startup dynstats_reset.conf
|
|
. $srcdir/diag.sh wait-for-stats-flush 'rsyslog.out.stats.log'
|
|
. $srcdir/diag.sh msleep 1000
|
|
. $srcdir/diag.sh injectmsg-litteral $srcdir/testsuites/dynstats_input_1
|
|
. $srcdir/diag.sh msleep 4000
|
|
. $srcdir/diag.sh injectmsg-litteral $srcdir/testsuites/dynstats_input_2
|
|
. $srcdir/diag.sh msleep 4000
|
|
. $srcdir/diag.sh injectmsg-litteral $srcdir/testsuites/dynstats_input_3
|
|
. $srcdir/diag.sh wait-queueempty
|
|
. $srcdir/diag.sh wait-for-stats-flush 'rsyslog.out.stats.log'
|
|
. $srcdir/diag.sh content-check "foo 001 0"
|
|
. $srcdir/diag.sh content-check "foo 006 0"
|
|
echo doing shutdown
|
|
. $srcdir/diag.sh shutdown-when-empty
|
|
echo wait on shutdown
|
|
. $srcdir/diag.sh wait-shutdown
|
|
# because dyn-accumulators for existing metrics were posted-to under a second, they should not have been evicted
|
|
. $srcdir/diag.sh custom-content-check 'baz=2' 'rsyslog.out.stats.log'
|
|
. $srcdir/diag.sh custom-content-check 'bar=1' 'rsyslog.out.stats.log'
|
|
. $srcdir/diag.sh custom-content-check 'foo=3' 'rsyslog.out.stats.log'
|
|
# sum is high because accumulators were never reset, and we expect them to last specific number of cycles(when we posted before ttl expiry)
|
|
. $srcdir/diag.sh first-column-sum-check 's/.*foo=\([0-9]\+\)/\1/g' 'foo=' 'rsyslog.out.stats.log' 6
|
|
. $srcdir/diag.sh first-column-sum-check 's/.*bar=\([0-9]\+\)/\1/g' 'bar=' 'rsyslog.out.stats.log' 1
|
|
. $srcdir/diag.sh first-column-sum-check 's/.*baz=\([0-9]\+\)/\1/g' 'baz=' 'rsyslog.out.stats.log' 3
|
|
. $srcdir/diag.sh first-column-sum-check 's/.*new_metric_add=\([0-9]\+\)/\1/g' 'new_metric_add=' 'rsyslog.out.stats.log' 3
|
|
. $srcdir/diag.sh first-column-sum-check 's/.*ops_overflow=\([0-9]\+\)/\1/g' 'ops_overflow=' 'rsyslog.out.stats.log' 0
|
|
. $srcdir/diag.sh first-column-sum-check 's/.*no_metric=\([0-9]\+\)/\1/g' 'no_metric=' 'rsyslog.out.stats.log' 0
|
|
. $srcdir/diag.sh exit
|