forked from apache/atlas
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3933 from atlanhq/otel3
MLH-36 | Integrating OTEL with logback
- Loading branch information
Showing
79 changed files
with
2,507 additions
and
2,422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
137 changes: 0 additions & 137 deletions
137
addons/falcon-bridge/src/test/resources/atlas-log4j.xml
This file was deleted.
Oops, something went wrong.
132 changes: 132 additions & 0 deletions
132
addons/falcon-bridge/src/test/resources/atlas-logback.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!-- | ||
~ 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. | ||
--> | ||
|
||
<configuration> | ||
<appender name="console" class="ch.qos.logback.core.ConsoleAppender"> | ||
<param name="Target" value="System.out"/> | ||
<encoder> | ||
<pattern>%date [%thread] %level{5} [%file:%line] %msg%n</pattern> | ||
</encoder> | ||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter"> | ||
<level>INFO</level> | ||
</filter> | ||
</appender> | ||
|
||
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<file>${atlas.log.dir}/${atlas.log.file}</file> | ||
<append>true</append> | ||
<encoder> | ||
<pattern>%date [%thread] %level{5} [%file:%line] %msg%n</pattern> | ||
</encoder> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | ||
<fileNamePattern>${atlas.log.dir}/${atlas.log.file}-%d</fileNamePattern> | ||
<maxHistory>20</maxHistory> | ||
<cleanHistoryOnStart>true</cleanHistoryOnStart> | ||
</rollingPolicy> | ||
</appender> | ||
|
||
<appender name="AUDIT" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<file>${atlas.log.dir}/audit.log</file> | ||
<append>true</append> | ||
<encoder> | ||
<pattern>%date [%thread] %level{5} [%file:%line] %msg%n</pattern> | ||
</encoder> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | ||
<fileNamePattern>${atlas.log.dir}/audit-%d.log</fileNamePattern> | ||
<maxHistory>20</maxHistory> | ||
<cleanHistoryOnStart>false</cleanHistoryOnStart> | ||
</rollingPolicy> | ||
</appender> | ||
|
||
<appender name="METRICS" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<file>${atlas.log.dir}/metrics.log</file> | ||
<append>true</append> | ||
<encoder> | ||
<pattern>%date [%thread] %level{5} [%file:%line] %msg%n</pattern> | ||
</encoder> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | ||
<fileNamePattern>${atlas.log.dir}/metrics-%d.log</fileNamePattern> | ||
<maxHistory>20</maxHistory> | ||
<cleanHistoryOnStart>false</cleanHistoryOnStart> | ||
</rollingPolicy> | ||
</appender> | ||
|
||
<appender name="FAILED" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<file>${atlas.log.dir}/failed.log</file> | ||
<append>true</append> | ||
<encoder> | ||
<pattern>%date [%thread] %level{5} [%file:%line] %msg%n</pattern> | ||
</encoder> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> | ||
<fileNamePattern>${atlas.log.dir}/failed-%d.log</fileNamePattern> | ||
<maxHistory>20</maxHistory> | ||
<cleanHistoryOnStart>false</cleanHistoryOnStart> | ||
</rollingPolicy> | ||
</appender> | ||
|
||
<logger name="org.apache.atlas" additivity="false" level="info"> | ||
<appender-ref ref="FILE"/> | ||
</logger> | ||
|
||
<logger name="org.apache.atlas.impala.ImpalaLineageTool" additivity="false" level="debug"> | ||
<appender-ref ref="FILE"/> | ||
</logger> | ||
|
||
<logger name="org.apache.atlas.impala.hook.ImpalaLineageHook" additivity="false" level="debug"> | ||
<appender-ref ref="FILE"/> | ||
</logger> | ||
|
||
<logger name="org.janusgraph" additivity="false" level="warn"> | ||
<appender-ref ref="FILE"/> | ||
</logger> | ||
|
||
<logger name="org.springframework" additivity="false" level="warn"> | ||
<appender-ref ref="console"/> | ||
</logger> | ||
|
||
<logger name="org.eclipse" additivity="false" level="warn"> | ||
<appender-ref ref="console"/> | ||
</logger> | ||
|
||
<logger name="com.sun.jersey" additivity="false" level="warn"> | ||
<appender-ref ref="console"/> | ||
</logger> | ||
|
||
|
||
<!-- to avoid logs - The configuration log.flush.interval.messages = 1 was supplied but isn't a known config --> | ||
<logger name="org.apache.kafka.common.config.AbstractConfig" additivity="false" level="error"> | ||
<appender-ref ref="FILE"/> | ||
</logger> | ||
|
||
<logger name="METRICS" additivity="false" level="debug"> | ||
<appender-ref ref="METRICS"/> | ||
</logger> | ||
|
||
<logger name="FAILED" additivity="false" level="info"> | ||
<appender-ref ref="FAILED"/> | ||
</logger> | ||
|
||
<logger name="AUDIT" additivity="false" level="info"> | ||
<appender-ref ref="AUDIT"/> | ||
</logger> | ||
|
||
<root level="warn"> | ||
<appender-ref ref="FILE"/> | ||
</root> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.