aboutsummaryrefslogtreecommitdiff
path: root/kamon-examples/kamon-annotation-example/java/src/main/resources/application.conf
blob: 1755bfc5619f3d97b0bf4920ecf616ec3b1b0a2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
###############################
# Kamon related configuration #
###############################

kamon {

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

  modules {
    kamon-annotation.auto-start = yes
    kamon-log-reporter.auto-start = yes
  }
}