4281adfd95
* Introduced logging task for the ui * Do not update repo to allow multiple apps * Setup logging first * Different template names * Separate docker logging config * Removed duplication * Common logging task. * Tests. * Lint. * Commented out syslog server port for ui * Testing file permissions.
29 lines
810 B
Django/Jinja
29 lines
810 B
Django/Jinja
template(name="RemoteForwardFormat" type="list") {
|
|
constant(value="<")
|
|
property(name="pri")
|
|
constant(value=">")
|
|
property(name="timestamp" dateFormat="rfc3339")
|
|
constant(value=" ")
|
|
property(name="hostname")
|
|
constant(value=" ")
|
|
property(name="syslogtag")
|
|
property(name="msg" spifno1stsp="on")
|
|
property(name="msg")
|
|
}
|
|
|
|
if $programname startswith 'docker' then {
|
|
action(
|
|
type="omfwd"
|
|
protocol="{{ syslog_server_port.split(":")[0] }}"
|
|
target="{{ (syslog_server_port.split(":")[1])[2:] }}"
|
|
port="{{ syslog_server_port.split(":")[2] }}"
|
|
template="RemoteForwardFormat"
|
|
queue.SpoolDirectory="/var/spool/rsyslog"
|
|
queue.FileName="remote"
|
|
queue.MaxDiskSpace="1g"
|
|
queue.SaveOnShutdown="on"
|
|
queue.Type="LinkedList"
|
|
ResendLastMSGOnReconnect="on"
|
|
)
|
|
}
|