aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-annotation-example/java/src/main/resources/application.conf
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-examples/kamon-annotation-example/java/src/main/resources/application.conf')
-rw-r--r--kamon-examples/kamon-annotation-example/java/src/main/resources/application.conf21
1 files changed, 21 insertions, 0 deletions
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
+ }
+}