aboutsummaryrefslogtreecommitdiff
path: root/kamon-playground/src/main/resources/application.conf
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-playground/src/main/resources/application.conf')
-rw-r--r--kamon-playground/src/main/resources/application.conf29
1 files changed, 28 insertions, 1 deletions
diff --git a/kamon-playground/src/main/resources/application.conf b/kamon-playground/src/main/resources/application.conf
index fb65721b..f0698592 100644
--- a/kamon-playground/src/main/resources/application.conf
+++ b/kamon-playground/src/main/resources/application.conf
@@ -1,6 +1,6 @@
akka {
loggers = [ "akka.event.slf4j.Slf4jLogger" ]
- loglevel = DEBUG
+ loglevel = INFO
extensions = ["kamon.newrelic.NewRelic"]
@@ -24,6 +24,33 @@ kamon {
}
}
+kamon {
+ metrics {
+ tick-interval = 1 second
+
+ filters = [
+ {
+ actor {
+ includes = [ "user/simple-service-actor" ]
+ excludes = [ "system/*", "user/IO-*" ]
+ }
+ },
+ {
+ trace {
+ includes = [ "*" ]
+ excludes = []
+ }
+ },
+ {
+ dispatcher {
+ includes = [ "default-dispatcher" ]
+ excludes = []
+ }
+ }
+ ]
+ }
+
+}
kamon {