aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-annotation-example/java/src/main/resources
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-examples/kamon-annotation-example/java/src/main/resources')
-rw-r--r--kamon-examples/kamon-annotation-example/java/src/main/resources/META-INF/aop.xml8
-rw-r--r--kamon-examples/kamon-annotation-example/java/src/main/resources/application.conf21
-rw-r--r--kamon-examples/kamon-annotation-example/java/src/main/resources/logback.xml19
3 files changed, 48 insertions, 0 deletions
diff --git a/kamon-examples/kamon-annotation-example/java/src/main/resources/META-INF/aop.xml b/kamon-examples/kamon-annotation-example/java/src/main/resources/META-INF/aop.xml
new file mode 100644
index 00000000..9b144860
--- /dev/null
+++ b/kamon-examples/kamon-annotation-example/java/src/main/resources/META-INF/aop.xml
@@ -0,0 +1,8 @@
+<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">
+
+<aspectj>
+ <weaver options="-Xlint:ignore">
+ <include within="kamon..*"/>
+ <exclude within="org.aspectj.*"/>
+ </weaver>
+</aspectj>
diff --git a/kamon-examples/kamon-annotation-example/java/src/main/resources/application.conf b/kamon-examples/kamon-annotation-example/java/src/main/resources/application.conf
new file mode 100644
index 00000000..1755bfc5
--- /dev/null
+++ b/kamon-examples/kamon-annotation-example/java/src/main/resources/application.conf
@@ -0,0 +1,21 @@
+###############################
+# Kamon related configuration #
+###############################
+
+kamon {
+
+ metric {
+ filters {
+ trace.includes = [ "**" ]
+ akka-actor.includes = [ "**" ]
+ akka-actor.excludes = ["*/system/**", "*/user/IO-**" ]
+ akka-dispatcher.includes = [ "**" ]
+ akka-dispatcher.excludes = [ ]
+ }
+ }
+
+ modules {
+ kamon-annotation.auto-start = yes
+ kamon-log-reporter.auto-start = yes
+ }
+}
diff --git a/kamon-examples/kamon-annotation-example/java/src/main/resources/logback.xml b/kamon-examples/kamon-annotation-example/java/src/main/resources/logback.xml
new file mode 100644
index 00000000..fac5ad3d
--- /dev/null
+++ b/kamon-examples/kamon-annotation-example/java/src/main/resources/logback.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+ <property name="CONSOLE_LOG_PATTERN" value="%d{yyyy-MM-dd HH:mm:ss.SSS} %5p ${PID:- } [%t] --- %-40.40logger{39} : %m%n%wex"/>
+
+ <conversionRule conversionWord="wex" converterClass="org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter" />
+
+ <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
+ <encoder>
+ <pattern>${CONSOLE_LOG_PATTERN}</pattern>
+ </encoder>
+ </appender>
+
+ <root level="INFO">
+ <appender-ref ref="CONSOLE" />
+ </root>
+
+ <!-- logger name="org.springframework" level="DEBUG"/ -->
+
+</configuration>