aboutsummaryrefslogtreecommitdiff
path: root/kamon-akka/src/main/resources/reference.conf
blob: 0ea6b75bd01f283b9b82d65e0ded1f3f0cb382a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ================================== #
# Kamon-Akka Reference Configuration #
# ================================== #

kamon {
  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-timeout-warning = off

    # Default dispatcher for all akka module operations
    dispatcher = "akka.actor.default-dispatcher"
  }

  metric.filters {
    actor.includes = []
    actor.excludes = [ "", "user", "system**", "user/IO-**" ]
  }
}