Add config feature 'syslog' logger.

This commit is contained in:
Michael Friedrich 2013-10-03 19:40:26 +02:00
parent f55d48cfb3
commit 7f330c0308
3 changed files with 10 additions and 0 deletions

View File

@ -24,4 +24,5 @@ install-exec-hook:
$(MKDIR_P) features-enabled && \
$(LN_S) ../features-available/checker.conf features-enabled/; \
$(LN_S) ../features-available/notification.conf features-enabled/; \
$(LN_S) ../features-available/syslog.conf features-enabled/; \
fi

View File

@ -10,6 +10,7 @@ CONFIG_FILES = \
livestatus.conf \
notification.conf \
perfdata.conf \
syslog.conf \
statusdat.conf
install-data-local:

View File

@ -0,0 +1,8 @@
/**
* The SyslogLogger type writes log information to syslog.
*/
object SyslogLogger "syslog" {
severity = "information"
}