aboutsummaryrefslogtreecommitdiff
path: root/kamon-playground
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2015-01-28 04:55:22 +0100
committerIvan Topolnjak <ivantopo@gmail.com>2015-01-28 04:55:22 +0100
commit4a808b1fb50847d70978c97cfbecefa02c00b1b7 (patch)
tree536af1e0d129d828649ac2694eef0defb184caea /kamon-playground
parent25dab6f50ace7f7b53eaecab14f9a9764c928582 (diff)
downloadKamon-4a808b1fb50847d70978c97cfbecefa02c00b1b7.tar.gz
Kamon-4a808b1fb50847d70978c97cfbecefa02c00b1b7.tar.bz2
Kamon-4a808b1fb50847d70978c97cfbecefa02c00b1b7.zip
= playground: remove unused settings from the app config.
Diffstat (limited to 'kamon-playground')
-rw-r--r--kamon-playground/src/main/resources/application.conf64
1 files changed, 5 insertions, 59 deletions
diff --git a/kamon-playground/src/main/resources/application.conf b/kamon-playground/src/main/resources/application.conf
index 9782418f..11f06334 100644
--- a/kamon-playground/src/main/resources/application.conf
+++ b/kamon-playground/src/main/resources/application.conf
@@ -1,6 +1,6 @@
akka {
loglevel = INFO
- //extensions = ["kamon.newrelic.NewRelic"]
+ extensions = ["kamon.statsd.StatsD", "kamon.system.SystemMetrics"]
actor {
debug {
@@ -22,69 +22,15 @@ kamon {
}
}
-kamon.statsd {
- hostname = "192.168.59.103"
- simple-metric-key-generator {
- metric-name-normalization-strategy = percent-encode
- }
-}
-
kamon {
trace {
level = simple-trace
-
}
- metrics {
- tick-interval = 1 second
-
- filters = [
- {
- actor {
- includes = [ "user/simple-service-actor" ]
- excludes = [ "system/*", "user/IO-*" ]
- }
- },
- {
- trace {
- includes = [ "*" ]
- excludes = []
- }
- },
- {
- dispatcher {
- includes = [ "akka.actor.default-dispatcher" ]
- excludes = []
- }
- },
- {
- custom-metric {
- includes = [ "*" ]
- excludes = [ ]
- }
- },
- {
- router {
- includes = [ "user/replier" ]
- excludes = [ "system/*", "user/IO-*" ]
- }
- }
- ]
- precision {
- actor {
- processing-time {
- highest-trackable-value = 3600000000000
- significant-value-digits = 1
- }
- time-in-mailbox {
- highest-trackable-value = 3600000000000
- significant-value-digits = 1
- }
- mailbox-size {
- highest-trackable-value = 99999999
- significant-value-digits = 1
- }
- }
+ metric {
+ filters {
+ trace.includes = [ "**" ]
+ actor.includes = [ "**" ]
}
}