mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-15 19:50:40 +01:00
The omsendertrack module is designed to track and report statistics for message senders across all inputs in Rsyslog. It periodically outputs a JSON file containing information about each sender. Note: This commit provides minimalistic basic functionality as a PoC. We will check it's usefulness in practice and expect follow-up PRs to enhance functionality and include feedback from early testing. However, this module is solid, just feature limited. see also: https://github.com/rsyslog/rsyslog/issues/5599
8 lines
131 B
Bash
Executable File
8 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
pwd
|
|
ls -l omsender*sh
|
|
echo srcdir: $srcdir
|
|
export USE_VALGRIND="YES"
|
|
source ${srcdir:-.}/omsendertrack-basic.sh
|