mirror of https://github.com/Icinga/icinga2.git
Add config feature 'syslog' logger.
This commit is contained in:
parent
f55d48cfb3
commit
7f330c0308
|
@ -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
|
||||
|
|
|
@ -10,6 +10,7 @@ CONFIG_FILES = \
|
|||
livestatus.conf \
|
||||
notification.conf \
|
||||
perfdata.conf \
|
||||
syslog.conf \
|
||||
statusdat.conf
|
||||
|
||||
install-data-local:
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
* The SyslogLogger type writes log information to syslog.
|
||||
*/
|
||||
|
||||
object SyslogLogger "syslog" {
|
||||
severity = "information"
|
||||
}
|
||||
|
Loading…
Reference in New Issue