| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to you under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| appender.0.type = Console #<1> |
| appender.0.name = CONSOLE |
| appender.0.layout.type = GelfLayout |
| appender.0.layout.messagePattern = %d %5p [%t] %c{1} %X{loginId, requestId} - %m%n |
| appender.0.layout.includeThreadContext = true |
| appender.0.layout.threadContextIncludes = true |
| appender.0.layout.KeyValuePair.0.type = KeyValuePair |
| appender.0.layout.KeyValuePair.0.key = additionalField1 |
| appender.0.layout.KeyValuePair.0.value = constant value |
| appender.0.layout.KeyValuePair.1.type = KeyValuePair |
| appender.0.layout.KeyValuePair.1.key = additionalField2 |
| appender.0.layout.KeyValuePair.1.value = $${ctx:key} |
| |
| appender.1.type = Socket #<2> |
| appender.1.name = GRAYLOG_TCP |
| appender.1.protocol = TCP |
| appender.1.host = graylog.domain.com |
| appender.1.port = 12201 |
| appender.1.layout.type = GelfLayout |
| appender.1.layout.host = someserver |
| appender.1.layout.compressionType = OFF |
| appender.1.layout.includeNullDelimiter = true |
| |
| appender.2.type = Socket #<3> |
| appender.2.name = GRAYLOG_UDP |
| appender.2.protocol = UDP |
| appender.2.host = graylog.domain.com |
| appender.2.port = 12201 |
| appender.2.layout.type = GelfLayout |
| appender.2.layout.host = someserver |
| appender.2.layout.compressionType = ZLIB |
| appender.2.layout.compressionThreshold = 1024 |
| |
| rootLogger.level = WARN |
| rootLogger.appenderRef.0.ref = CONSOLE |
| rootLogger.appenderRef.1.ref = GRAYLOG_TCP |
| rootLogger.appenderRef.2.ref = GRAYLOG_UDP |