12 lines
379 B
Django/Jinja
12 lines
379 B
Django/Jinja
# Forward logs to a receiver
|
|
# classic mode
|
|
# *.* {{ remote_rsyslog_host }}
|
|
|
|
*.* action(type="omfwd"
|
|
target="{{ remote_rsyslog_host }}"
|
|
port="{{ remote_rsyslog_port|default('514') }}"
|
|
protocol="{{ remote_rsyslog_protocol|default('udp') }}"
|
|
action.resumeRetryCount="100"
|
|
queue.type="LinkedList"
|
|
queue.size="1000")
|