mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-18 19:10:42 +01:00
15 lines
383 B
Plaintext
15 lines
383 B
Plaintext
$IncludeConfig diag-common.conf
|
|
|
|
module(load="../plugins/ommysql/.libs/ommysql")
|
|
|
|
:msg, contains, "msgnum:" {
|
|
action(type="ommysql" server="127.0.0.1"
|
|
db="Syslog" uid="rsyslog" pwd="testbench"
|
|
queue.size="10000" queue.type="linkedList"
|
|
queue.workerthreads="5"
|
|
queue.workerthreadMinimumMessages="500"
|
|
queue.timeoutWorkerthreadShutdown="1000"
|
|
queue.timeoutEnqueue="10000"
|
|
)
|
|
}
|