aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/reference.conf
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-12-17 14:19:23 -0300
committerDiego <diegolparra@gmail.com>2014-12-17 14:19:23 -0300
commitb8c6a19f5c4ca707cc7b6e22811b8ed579857376 (patch)
tree969f9496afd76ded9e643456109a7918d7061134 /kamon-core/src/main/resources/reference.conf
parent7604bee52af0a75409a2604d0ea9adabc6b4bc57 (diff)
downloadKamon-b8c6a19f5c4ca707cc7b6e22811b8ed579857376.tar.gz
Kamon-b8c6a19f5c4ca707cc7b6e22811b8ed579857376.tar.bz2
Kamon-b8c6a19f5c4ca707cc7b6e22811b8ed579857376.zip
= core: avoid unnecesary allocation when askPatternTimeoutWarning is off
Diffstat (limited to 'kamon-core/src/main/resources/reference.conf')
-rw-r--r--kamon-core/src/main/resources/reference.conf9
1 files changed, 7 insertions, 2 deletions
diff --git a/kamon-core/src/main/resources/reference.conf b/kamon-core/src/main/resources/reference.conf
index df5534a4..da09f500 100644
--- a/kamon-core/src/main/resources/reference.conf
+++ b/kamon-core/src/main/resources/reference.conf
@@ -172,13 +172,18 @@ kamon {
max-incubation-time = 20 seconds
}
- # If ask-pattern-tracing is enabled, a WARN level log message will be generated if a future generated by the `ask`
+ # Default dispatcher for all trace operations
+ dispatcher = ${kamon.default-dispatcher}
+ }
+
+ akka {
+ # If ask-pattern-timeout-warning is enabled, a WARN level log message will be generated if a future generated by the `ask`
# pattern fails with a `AskTimeoutException` and the log message will contain information depending of the strategy selected.
# strategies:
# - off: nothing to do.
# - lightweight: logs the warning when a timeout is reached using org.aspectj.lang.reflect.SourceLocation.
# - heavyweight: logs the warning when a timeout is reached using a stack trace captured at the moment the future was created.
- ask-pattern-tracing = off
+ ask-pattern-timeout-warning = off
# Default dispatcher for all trace operations
dispatcher = ${kamon.default-dispatcher}