aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/application.conf
blob: 1b564f7e2cd3fb92fdfa339bd420b78766e666e0 (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
akka {
    loglevel = INFO
    stdout-loglevel = INFO
    log-dead-letters = on

    #extensions     = ["kamon.dashboard.DashboardExtension"]
    akka.loggers    = ["kamon.newrelic.NewRelicErrorLogger"]

    actor {
        default-dispatcher {
            fork-join-executor {
                # Min number of threads to cap factor-based parallelism number to
                parallelism-min = 2

                # The parallelism factor is used to determine thread pool size using the
                # following formula: ceil(available processors * factor). Resulting size
                # is then bounded by the parallelism-min and parallelism-max values.
                parallelism-factor = 3.0

                # Max number of threads to cap factor-based parallelism number to
                parallelism-max = 8
              }

              throughput = 100
        }
        debug {
          unhandled = on
        }
    }
}