mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-18 16:50:42 +01:00
- design-change to make room for array and sparse-array tables in addition to string(which original design assumed) - memory-leak fix (in unused lookup-table senario), same problem could lead to illegal free(during shutdown) in multiple call-sites for lookup-fn - allow rainerscript functions to declaratively opt-out of funcdata destruct - tests for unused lookup-table senario and valgrind test for lookup-table - interned-value-strings (so each value string is represented in memory only once, as per the proposal) - memory-leak fix in failure senarios (allocation failure etc in table-loadup)
8 lines
205 B
Plaintext
8 lines
205 B
Plaintext
$IncludeConfig diag-common.conf
|
|
|
|
lookup_table(name="xlate" file="xlate.lkp_tbl")
|
|
|
|
template(name="outfmt" type="string" string="- %msg%\n")
|
|
|
|
action(type="omfile" file="./rsyslog.out.log" template="outfmt")
|