mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-18 19:10:42 +01:00
12 lines
400 B
Plaintext
12 lines
400 B
Plaintext
$IncludeConfig diag-common.conf
|
|
|
|
ruleset(name="stats") {
|
|
action(type="omfile" file="./rsyslog.out.stats.log")
|
|
}
|
|
|
|
module(load="../plugins/impstats/.libs/impstats" interval="1" severity="7" resetCounters="on" Ruleset="stats" bracketing="on" format="json")
|
|
|
|
if ($msg == "this condition will never match") then {
|
|
action(name="an_action_that_is_never_called" type="omfile" file="./rsyslog.out.log")
|
|
}
|