aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test/resources/application.conf
blob: bf6123d98561fe3598cfc73e4a45611b3c4191b4 (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
akka {
  loggers = ["akka.event.slf4j.Slf4jLogger"]
}

kamon {
  metric {
    tick-interval = 1 hour
    default-collection-context-buffer-size = 100
  }

  trace {
    level-of-detail = simple-trace
    sampling = all
  }

  default-tags = {
    name = "jason"
    number = 42
    username = ${USER}
    list = [1, 2, 3] // lists do not make sense for a tag
    object = {
      nested-bool = true
      nested-string = "a string"
    }
  }
}