summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorMilan Bartos <mbartos@redhat.com>2012-09-19 11:35:22 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-09-20 10:06:17 +0200
commitd691f7ad87e4f2fd32ea1b82cda266d8fc626e4a (patch)
tree3e2d2c54a834e16b8c8d0b159e0b1b14e5988753 /runtime
parente99ca8246fee02bb7f713f31527f2377a5d2dd5c (diff)
downloadrsyslog-d691f7ad87e4f2fd32ea1b82cda266d8fc626e4a.tar.gz
rsyslog-d691f7ad87e4f2fd32ea1b82cda266d8fc626e4a.tar.xz
rsyslog-d691f7ad87e4f2fd32ea1b82cda266d8fc626e4a.zip
Fix missing Sysklogd template
modified: runtime/rsconf.c
Diffstat (limited to 'runtime')
-rw-r--r--runtime/rsconf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/rsconf.c b/runtime/rsconf.c
index b83ba063..946d1014 100644
--- a/runtime/rsconf.c
+++ b/runtime/rsconf.c
@@ -93,6 +93,7 @@ static uchar template_StdUsrMsgFmt[] = "\" %syslogtag%%msg%\n\r\"";
static uchar template_StdDBFmt[] = "\"insert into SystemEvents (Message, Facility, FromHost, Priority, DeviceReportedTime, ReceivedAt, InfoUnitID, SysLogTag) values ('%msg%', %syslogfacility%, '%HOSTNAME%', %syslogpriority%, '%timereported:::date-mysql%', '%timegenerated:::date-mysql%', %iut%, '%syslogtag%')\",SQL";
static uchar template_StdPgSQLFmt[] = "\"insert into SystemEvents (Message, Facility, FromHost, Priority, DeviceReportedTime, ReceivedAt, InfoUnitID, SysLogTag) values ('%msg%', %syslogfacility%, '%HOSTNAME%', %syslogpriority%, '%timereported:::date-pgsql%', '%timegenerated:::date-pgsql%', %iut%, '%syslogtag%')\",STDSQL";
static uchar template_spoofadr[] = "\"%fromhost-ip%\"";
+static uchar template_SysklogdFileFormat[] = "\"%TIMESTAMP% %HOSTNAME% %syslogtag%%msg:::sp-if-no-1st-sp%%msg%\n\"";
static uchar template_StdJSONFmt[] = "\"{\\\"message\\\":\\\"%msg:::json%\\\",\\\"fromhost\\\":\\\"%HOSTNAME:::json%\\\",\\\"facility\\\":\\\"%syslogfacility-text%\\\",\\\"priority\\\":\\\"%syslogpriority-text%\\\",\\\"timereported\\\":\\\"%timereported:::date-rfc3339%\\\",\\\"timegenerated\\\":\\\"%timegenerated:::date-rfc3339%\\\"}\"";
/* end templates */
@@ -1197,6 +1198,8 @@ initLegacyConf(void)
tplAddLine(ourConf, " StdUsrMsgFmt", &pTmp);
pTmp = template_StdDBFmt;
tplAddLine(ourConf, " StdDBFmt", &pTmp);
+ pTmp = template_SysklogdFileFormat;
+ tplAddLine(ourConf, "RSYSLOG_SysklogdFileFormat", &pTmp);
pTmp = template_StdPgSQLFmt;
tplAddLine(ourConf, " StdPgSQLFmt", &pTmp);
pTmp = template_StdJSONFmt;