Path: blob/master/contrib/vm/compute_node/etc/rsyslog.d/sagecell.conf
448 views
global(maxMessageSize="64k")12module(load="omrelp")34template(name="sagecell_local" type="list") {5property(name="syslogtag")6property(name="msg" spifno1stsp="on")7property(name="msg" droplastlf="on")8constant(value=" #")9property(name="syslogseverity-text" caseconversion="upper")10constant(value="\n")11}1213if $syslogfacility-text == "local3" then14{15action(type="omfile"16file="/var/log/sagecell.log"17template="sagecell_local")18if $syslogseverity-text != "debug" and $msg contains " sagecell.stats " then19action(type="omrelp"20target="10.0.3.1"21port="12514"22action.resumeRetryCount="-1"23queue.type="linkedList"24queue.filename="sagecell"25queue.maxDiskSpace="1g"26queue.saveOnShutdown="on")27stop28}293031