- align file locations to match new upstream config - amend messages and UPDATING to alert users - use upstream sample files for default configuration - MAINTAINER timeout Approved by: jrm (mentor) Differential Revision: https://reviews.freebsd.org/D20021
41 lines
2.0 KiB
XML
41 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Configuration packages="org.graylog2.log4j" shutdownHook="disable" monitorInterval="15">
|
|
<Appenders>
|
|
<Console name="STDOUT" target="SYSTEM_OUT">
|
|
<PatternLayout pattern="%d %-5p: %c - %m%n"/>
|
|
</Console>
|
|
<File name="FreeBSD-logs" fileName="%%GRAYLOG_LOGS_DIR%%/server.log">
|
|
<PatternLayout>
|
|
<Pattern>%d %p %c{1.} [%t] %m%n</Pattern>
|
|
</PatternLayout>
|
|
</File>
|
|
|
|
<!-- Internal Graylog log appender. Please do not disable. This makes internal log messages available via REST calls. -->
|
|
<Memory name="graylog-internal-logs" bufferSize="500"/>
|
|
</Appenders>
|
|
<Loggers>
|
|
<!-- Application Loggers -->
|
|
<Logger name="org.graylog2" level="info"/>
|
|
<Logger name="com.github.joschi.jadconfig" level="warn"/>
|
|
<!-- this emits a harmless warning for ActiveDirectory every time which we can't work around :( -->
|
|
<Logger name="org.apache.directory.api.ldap.model.message.BindRequestImpl" level="error"/>
|
|
<!-- Prevent DEBUG message about Lucene Expressions not found. -->
|
|
<Logger name="org.elasticsearch.script" level="warn"/>
|
|
<!-- Disable messages from the version check -->
|
|
<Logger name="org.graylog2.periodical.VersionCheckThread" level="off"/>
|
|
<!-- Suppress crazy byte array dump of Drools -->
|
|
<Logger name="org.drools.compiler.kie.builder.impl.KieRepositoryImpl" level="warn"/>
|
|
<!-- Silence chatty natty -->
|
|
<Logger name="com.joestelmach.natty.Parser" level="warn"/>
|
|
<!-- Silence Kafka log chatter -->
|
|
<Logger name="kafka.log.Log" level="warn"/>
|
|
<Logger name="kafka.log.OffsetIndex" level="warn"/>
|
|
<!-- Silence useless session validation messages -->
|
|
<Logger name="org.apache.shiro.session.mgt.AbstractValidatingSessionManager" level="warn"/>
|
|
<Root level="warn">
|
|
<AppenderRef ref="graylog-internal-logs"/>
|
|
<AppenderRef ref="FreeBSD-logs"/>
|
|
</Root>
|
|
</Loggers>
|
|
</Configuration>
|