mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 09:42:46 +01:00
30 lines
1.2 KiB
Properties
30 lines
1.2 KiB
Properties
status = error
|
|
name = LogstashPropertiesConfig
|
|
|
|
#appender.console.type = Console
|
|
#appender.console.name = plain_console
|
|
#appender.console.layout.type = PatternLayout
|
|
#appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c] %m%n
|
|
|
|
#appender.json_console.type = Console
|
|
#appender.json_console.name = json_console
|
|
#appender.json_console.layout.type = JSONLayout
|
|
#appender.json_console.layout.compact = true
|
|
#appender.json_console.layout.eventEol = true
|
|
|
|
#This is is a test -- if this here, then the volume is mounted correctly.
|
|
appender.rolling.type = RollingFile
|
|
appender.rolling.name = rolling
|
|
appender.rolling.fileName = /var/log/logstash/logstash.log
|
|
appender.rolling.layout.type = PatternLayout
|
|
appender.rolling.layout.pattern = [%d{ISO8601}][%-5p][%-25c] %.10000m%n
|
|
appender.rolling.filePattern = /var/log/logstash/logstash-%d{yyyy-MM-dd}.log
|
|
appender.rolling.policies.type = Policies
|
|
appender.rolling.policies.time.type = TimeBasedTriggeringPolicy
|
|
appender.rolling.policies.time.interval = 1
|
|
appender.rolling.policies.time.modulate = true
|
|
#rootLogger.level = info
|
|
rootLogger.appenderRef.rolling.ref = rolling
|
|
rootLogger.level = ${sys:ls.log.level}
|
|
#rootLogger.appenderRef.console.ref = ${sys:ls.log.format}_console
|