aboutsummaryrefslogtreecommitdiff
path: root/kamon-akka/src/main/resources/reference.conf
blob: c765c72b08844f517c105259507f8810392dbba7 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# ================================== #
# 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
  }

  actor-group {
    test-group {
      includes = []
      excludes = []
    }
  }

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

    akka-router {
      includes = []
      excludes = []
    }

    akka-dispatcher {
      includes = []
      excludes = []
    }
  }

  modules {
    kamon-akka {
      requires-aspectj = yes
    }
  }
}